[][src]Trait febug::StaticWrappable

pub trait StaticWrappable: 'static {
    pub fn wrap(&self, name: Arguments<'_>) -> Wrapper<Self>;
pub 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

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

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

Loading content...

Implementors

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

Loading content...