Borrow Checker

202307221748
Status: #idea
Tags: Rust

Borrow Checker

Info

Immutable references permit aliasing but NOT mutation.

Attention

Rust references have a lifetime from its birth (when it is created) to its death (the last time the reference is used)


References

  1. https://rust-book.cs.brown.edu/ch04-02-references-and-borrowing.html#references-change-permissions-on-paths
  2. References and Borrowing