summaryrefslogtreecommitdiff
path: root/Borrow checker.md
blob: 09700bacce988f7ef67682f8618365c9d5fbf72b (plain)
1
2
3
4
5
6
7
8
[[Rust]]
[[Ownership]]
[[Dereferencing is to access the data behind a pointer]]
[[Aliasing is accessing the same data through different variables]]
[[Variables are subject to permissions similar to files on linux]]
[[References temporarily remove permissions]]
[[Creating a reference to a variable is called borrowing]]
[[It is illegal to create a mutable reference while an immutable reference is live]]