Trait ToBox

Source
pub trait ToBox {
    // Required method
    fn boxed(self) -> Box<Self>;
}

Required Methods§

Source

fn boxed(self) -> Box<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> ToBox for T