Cranston's Life - Rust and More Rust

Rust Ownership Examples That Make Me Think!

Rust users will know just how IMPORTANT ownership and the many related concepts are.

Yet acquiring and comprehending this important knowledge is often one of the most CHALLENGING things about learning and using Rust!

Rust ownership is something that I always strive to understand MORE than I already do.

The Rust Ownership by Example article is HELPING me do this.

That article covers TOPICS like assignment, ownership, scoping, reassignment, moves, copying, borrowing, passing by reference, passing by value, string literals, returning borrowed values, lifetimes, mutability, and MARSAW.

While I think I understand the basics, that article has some examples that are making me reconsider the NUANCES of Rust and ownership.

I must STUDY this article and its examples more.

I think that there is always MORE I can learn about ownership, borrowing, and the many other important ideas of Rust.