rustlings/exercises/19_smart_pointers
Denis-Cosmin NUTIU 06573e87ac initial commit
2024-10-28 22:46:17 +02:00
..
arc1.rs initial commit 2024-10-28 22:46:17 +02:00
box1.rs initial commit 2024-10-28 22:46:17 +02:00
cow1.rs initial commit 2024-10-28 22:46:17 +02:00
rc1.rs initial commit 2024-10-28 22:46:17 +02:00
README.md initial commit 2024-10-28 22:46:17 +02:00

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