pub trait IntoBoxed<T: ?Sized> {
    fn into_boxed(self) -> Box<T>;
}

Required methods

Implementations on Foreign Types

Implementors