#ownership

8 articles about ownership

rustAugust 10, 2025

mutable vs. immutable borrows.

Rust memory and string

rustAugust 5, 2025

What is the purpose of Box<T> in Rust?

Rust memory and string

rustApril 12, 2025

Rust: Memory Safety Without Garbage Collection

Rust gives you the performance of C with memory safety enforced at compile time. Learn how ownership and borrowing eliminate entire bug classes.