pub trait DoraOperator: Default {
    // Required method
    fn on_event(
        &mut self,
        event: &Event<'_>,
        output_sender: &mut DoraOutputSender<'_>
    ) -> Result<DoraStatus, String>;
}

Required Methods§

source

fn on_event( &mut self, event: &Event<'_>, output_sender: &mut DoraOutputSender<'_> ) -> Result<DoraStatus, String>

Object Safety§

This trait is not object safe.

Implementors§