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).