mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
rust: add container types structure image
This commit is contained in:
parent
0233c2e847
commit
4905268cc5
2 changed files with 108 additions and 0 deletions
106
docs/img/rust_container-types.svg
Normal file
106
docs/img/rust_container-types.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 526 KiB |
|
@ -1322,6 +1322,8 @@ impl Iterator for Counter {
|
||||||
|
|
||||||
## Smart Pointers
|
## Smart Pointers
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
A **pointer** is a general concept for a variable that contains an address in memory. This address refers to, or "points at" some other data.
|
A **pointer** is a general concept for a variable that contains an address in memory. This address refers to, or "points at" some other data.
|
||||||
The most common kind of pointer in Rust is a *reference*, which you learned about in Chapter 4. References are indicated by the `&` symbol and borrow the value they point to.
|
The most common kind of pointer in Rust is a *reference*, which you learned about in Chapter 4. References are indicated by the `&` symbol and borrow the value they point to.
|
||||||
They don't have any special capabilities other than referring to data. Also, they don`t have any overhead and are the kind of pointer used most often.
|
They don't have any special capabilities other than referring to data. Also, they don`t have any overhead and are the kind of pointer used most often.
|
||||||
|
|
Loading…
Add table
Reference in a new issue