pub trait MarkedEventReceiver {
    fn on_event(&mut self, ev: Event, _mark: Marker) -> Result<(), ScanError>;
}

Required Methods

Implementors