[[Rust]] [[Ownership]] [[Moved heap data principle]] --- To get around the issue of not being able to use a box after we moved ownership we can call .clone() on it. A clone is a deep copy of the heap data rather than just a shallow copy of the pointer to the original heap data.