gave smart_pointers its own README.md
This commit is contained in:
parent
8405a61b07
commit
3fad2a9c83
|
@ -0,0 +1,11 @@
|
||||||
|
## 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
|
||||||
|
|
||||||
|
- [Smart Pointers](https://doc.rust-lang.org/book/ch15-00-smart-pointers.html)
|
||||||
|
- [Using Box to Point to Data on the Heap](https://doc.rust-lang.org/book/ch15-01-box.html)
|
||||||
|
- [Rc\<T\>, the Reference Counted Smart Pointer](https://doc.rust-lang.org/book/ch15-04-rc.html)
|
||||||
|
- [Shared-State Concurrency](https://doc.rust-lang.org/book/ch16-03-shared-state.html)
|
||||||
|
- [Cow Documentation](https://doc.rust-lang.org/std/borrow/enum.Cow.html)
|
Loading…
Reference in New Issue