pub trait EventReceiver {
    fn on_event(&mut self, ev: Event);
}

Required Methods

Implementors