Trait febug::StaticWrappable[][src]

pub trait StaticWrappable: 'static {
    fn wrap(&self, name: Arguments<'_>) -> Wrapper<Self>;
fn wrap_signal(&self, signal: u8, name: Arguments<'_>) -> Wrapper<Self>; }

Helper trait for constructing Wrapper<T>s with type equal to TypeId::of::<Self>()

Required methods

fn wrap(&self, name: Arguments<'_>) -> Wrapper<Self>[src]

fn wrap_signal(&self, signal: u8, name: Arguments<'_>) -> Wrapper<Self>[src]

Loading content...

Implementors

impl<T: ?Sized + 'static> StaticWrappable for T[src]

Loading content...