pub trait Command: 'static + Sync {
    fn action(&self, view: &BinaryView);
    fn valid(&self, view: &BinaryView) -> bool;
}
Expand description

The trait required for generic commands. See register for example usage.

Required Methods

Implementors