to_boxed 0.1.0

This crate defines ToBoxed Trait to its derive
Documentation
1
2
3
4
5
6
7
pub use to_boxed_derive::*;

pub trait ToBoxed {
    fn to_boxed(self) -> Box<Self>
    where
        Self: Sized;
}