pub trait Unbox { type Target; // Required method fn unbox(self) -> Self::Target; }
Trait specifying unboxing capability of a pointer type.