pub trait IntoBox<A: ?Sized + UncheckedAnyExt>: AsAny { fn into_box(self) -> Box<A>; }
A trait for the conversion of an object into a boxed trait object.
Convert self into the appropriate boxed form.