[][src]Trait kas::prelude::Boxed

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

Provides a convenient .boxed() method on implementors

Required methods

fn boxed(self) -> Box<T>

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...