Trait Registrable

Source
pub trait Registrable {
    // Required methods
    fn get_functions(&self) -> &[FunctionDescriptor];
    fn get_name(&self) -> &'static str;

    // Provided methods
    fn is_xip(&self) -> bool { ... }
    fn get_binary(&self) -> Option<&'static [u8]> { ... }
}

Required Methods§

Source

fn get_functions(&self) -> &[FunctionDescriptor]

Source

fn get_name(&self) -> &'static str

Provided Methods§

Source

fn is_xip(&self) -> bool

Source

fn get_binary(&self) -> Option<&'static [u8]>

Implementors§