rustlings/exercises/19_smart_pointers
kingecg c40d940946 at strings 2025-09-23 22:33:47 +08:00
..
README.md at strings 2025-09-23 22:33:47 +08:00
arc1.rs at strings 2025-09-23 22:33:47 +08:00
box1.rs at strings 2025-09-23 22:33:47 +08:00
cow1.rs at strings 2025-09-23 22:33:47 +08:00
rc1.rs at strings 2025-09-23 22:33:47 +08:00

README.md

Smart Pointers

In Rust, smart pointers are variables that contain an address in memory and reference some other data, but they also have additional metadata and capabilities. Smart pointers in Rust often own the data they point to, while references only borrow data.

Further Information