rustlings/exercises/smart_pointers
huganardo 7da4ad469a First commit updating my worked solution so far
This commit is mainly to test to see if the readme.md updates when I change it 👍
2023-07-31 15:37:06 +10:00
..
arc1.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
box1.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
cow1.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
rc1.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
README.md feat(docs): add markdown linter for exercises README.md files 2023-03-30 19:53:22 +03:30

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