pub trait BlockRule: 'static {
    fn run(state: &mut BlockState<'_, '_>, silent: bool) -> bool;
}
Expand description

Each member of block rule chain must implement this trait

Required Methods

Implementors