VTEventCallbackAbortable

Trait VTEventCallbackAbortable 

Source
pub trait VTEventCallbackAbortable: VTEventCallbackMaybeAbortable<bool> {
    // Required method
    fn event(&mut self, event: VTEvent<'_>) -> bool;
}
Expand description

Receives a single VTEvent, returning a boolean indicating whether to continue parsing (true) or stop parsing (false).

Required Methods§

Source

fn event(&mut self, event: VTEvent<'_>) -> bool

Implementors§