October 2019
Intermediate to advanced
444 pages
10h 37m
English
Rust's ownership principle is a double-edged sword: on the one hand, it protects from unintended consequences and enables compile-time memory management; on the other hand, mutable access is significantly more difficult to obtain. While it is more complex to manage, shared mutable access can be great for performance.
In Rust, this is done in a way similar to interior mutability (https://doc.rust-lang.org/book/ch15-05-interior-mutability.html), but using ...
Read now
Unlock full access