|
|
|
|
|
by vlovich123
395 days ago
|
|
Rust lifetimes are generally fairly local and don’t impact refactoring too much unless you fundamentally change the ownership structure. Also a reminder that Rc, Arc, and Box are garbage collection. Indeed rust is a garbage collected language unless you drop to unsafe. It’s best to clarify with tracing GC which is what I think you meant. |
|