Borrowing & References
Shared (&T) and exclusive (&mut T) borrows — the rules that prevent data races at compile time.
Shared (&T) and exclusive (&mut T) borrows — the rules that prevent data races at compile time.
Lifetime annotations — ensuring references don't outlive the data they point to.
Rust's three ownership rules: one owner, no aliases, drop on scope exit.