Box, Rc, RefCell, and building your own smart pointers.
Based on The Rust Programming Language, Chapter 15
Content coming soon. This module will cover smart pointers that provide functionality beyond references, including heap allocation with Box, reference counting with Rc, and interior mutability with RefCell.