pub trait NoDrop { }
This trait marks types that don’t need dropping.
It is used as a bound for BumpBox’s into_ref and into_mut so you don’t accidentally omit a drop that does matter.
BumpBox
into_ref
into_mut