pub type Box<T> = Box<T>;
A type alias for std::boxed::Box<T>.
std::boxed::Box<T>
Box doesn’t require a wrapper because it is guaranteed to be layout as a pointer.
Box
struct Box<T>(/* private fields */);