๐ Rust Ownership
An owner can own multiple values, but is owned by exactly one owner. โ Tree structure with a root
Extensions
Rust allows toโฆ
- Move values between owners โ โก๏ธ Rust Moves
- Excuse simple types โ ๐จ๏ธ Rust Copy Types
- Multiple owners: ๐ Rust Rc and Arc
- Borrowing references are non-owning pointers with limited lifetime โ ๐ Rust Pointers
- perform interior mutability