pub trait AddressCommand: 'static + Sync {
// Required methods
fn action(&self, view: &BinaryView, addr: u64);
fn valid(&self, view: &BinaryView, addr: u64) -> bool;
}Expand description
The trait required for address-associated commands. See register_command_for_address for example usage.
Required Methods§
fn action(&self, view: &BinaryView, addr: u64)
fn valid(&self, view: &BinaryView, addr: u64) -> bool
Implementors§
impl<T> AddressCommand for Twhere
T: 'static + Sync + Fn(&BinaryView, u64),
where T: 'static + Sync + Fn(&BinaryView, u64),