|
|
|
|
|
by sapiogram
467 days ago
|
|
Rust loses a lot of its nice properties without borrow checking and lifetimes, though. For example, resources no longer get cleaned up automatically, and the compiler no longer protects you against data races. Which in turn makes the entire language memory unsafe. |
|
This should prevent most of the memory safety issues, though data races could still be tricky (e.g. Go is memory unsafe due to data races)