1 2 3 4 5 6 7
pub use to_boxed_derive::*; pub trait ToBoxed { fn to_boxed(self) -> Box<Self> where Self: Sized; }