pub trait IntoBox<A: ?Sized + Downcast>: Any { // Required method 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.