Trait febug::Wrappable

source ·
pub trait Wrappable {
    // Required methods
    fn wrap_type(&self, tp: u64, name: Arguments<'_>) -> Wrapper<Self>;
    fn wrap_type_signal(
        &self,
        tp: u64,
        signal: u8,
        name: Arguments<'_>
    ) -> Wrapper<Self>;
}
Expand description

Helper trait for constructing Wrapper<T>s

Required Methods§

source

fn wrap_type(&self, tp: u64, name: Arguments<'_>) -> Wrapper<Self>

source

fn wrap_type_signal( &self, tp: u64, signal: u8, name: Arguments<'_> ) -> Wrapper<Self>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: ?Sized> Wrappable for T