Trait as_any::IntoBox[][src]

pub trait IntoBox<A: ?Sized + UncheckedAnyExt>: AsAny {
    fn into_box(self) -> Box<A>;
}
Expand description

A trait for the conversion of an object into a boxed trait object.

Required methods

Convert self into the appropriate boxed form.

Implementors