// MODULE 13

Smart Pointers

Box, Rc, RefCell, and building your own smart pointers.

Smart Pointers

Based on The Rust Programming Language, Chapter 15

Topics Covered


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.