1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-14 13:56:11 +02:00
rustlings/exercises/smart_pointers/README.md

724 B

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