Trait FunctionCommand

Source
pub trait FunctionCommand: 'static + Sync {
    // Required methods
    fn action(&self, view: &BinaryView, func: &Function);
    fn valid(&self, view: &BinaryView, func: &Function) -> bool;
}
Expand description

The trait required for function-associated commands. See register_command_for_function for example usage.

Required Methods§

Source

fn action(&self, view: &BinaryView, func: &Function)

Source

fn valid(&self, view: &BinaryView, func: &Function) -> bool

Implementors§

Source§

impl<T> FunctionCommand for T
where T: 'static + Sync + Fn(&BinaryView, &Function),