[][src]Trait kas::Boxed

pub trait Boxed<T: ?Sized> {
    pub fn boxed(self) -> Box<T>;
}

Provides a convenient .boxed() method on implementors

Required methods

pub fn boxed(self) -> Box<T>[src]

Boxing method

Loading content...

Implementors

impl<M: Menu + Sized> Boxed<dyn Menu<Msg = <M as Handler>::Msg> + 'static> for M[src]

impl<W: Widget + Sized> Boxed<dyn Widget<Msg = <W as Handler>::Msg> + 'static> for W[src]

Loading content...