Trait IntoBoxed

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

Required Methods§

Source

fn into_boxed(self) -> Box<T>

Implementations on Foreign Types§

Source§

impl<T: ?Sized> IntoBoxed<T> for Box<T>

Source§

fn into_boxed(self) -> Box<T>

Implementors§

Source§

impl<T> IntoBoxed<T> for T