rustlings/exercises/19_smart_pointers
Tuan-Dat Tran a3e2bc985c Initial commit
Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
2024-09-01 19:20:40 +02:00
..
README.md Initial commit 2024-09-01 19:20:40 +02:00
arc1.rs Initial commit 2024-09-01 19:20:40 +02:00
box1.rs Initial commit 2024-09-01 19:20:40 +02:00
cow1.rs Initial commit 2024-09-01 19:20:40 +02:00
rc1.rs Initial commit 2024-09-01 19:20:40 +02: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