Smart Pointers in Rust
An exploration of smart pointers in Rust, focusing on the core concepts of the Deref and Drop traits that give them their power.
An exploration of smart pointers in Rust, focusing on the core concepts of the Deref and Drop traits that give them their power.
Understand the interior mutability pattern in Rust using RefCell<T> and Cell<T> to mutate data even with immutable references.
Understanding Ownership in Rust