pub trait EventHandler: Send + Sync { // Required method fn handle(&self, event: &Event); }
Sync event handler trait.
Handle an event.