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

The trait required for range-associated commands. See register_for_range for example usage.

Required Methods

Implementors