Trait sqruff_lib::helpers::Boxed

source ·
pub trait Boxed {
    // Required method
    fn boxed(self) -> Box<Self>
       where Self: Sized;
}

Required Methods§

source

fn boxed(self) -> Box<Self>
where Self: Sized,

Implementors§

source§

impl<T> Boxed for T