Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 371 Bytes

ch04-00-understanding-ownership.md

File metadata and controls

7 lines (6 loc) · 371 Bytes

Understanding Ownership

Ownership is Rust’s most unique feature, and it enables Rust to make memory safety guarantees without needing a garbage collector. Therefore, it’s important to understand how ownership works in Rust. In this chapter, we’ll talk about ownership as well as several related features: borrowing, slices, and how Rust lays data out in memory.