|
|
|
|
|
by dbdr
118 days ago
|
|
Ref counting is deterministic. Rust memory management is also deterministic: the memory is freed exactly when the owner of the data gets out of scope (and the borrow checker guarantees at compile time there is no use after that). |
|