Intro
This part summarizes the fifth chapter of "Programming Rust, 2nd Edition", "References". There was talk of references before, this chapter provides some additional detail around shared and mutable references and lifetimes.
References to Values
We have encountered references previously. There are two types
- Shared
r/o references, can be …