pub trait EventHandler<E: Event> {
    fn handle(&mut self, event: E);
}
Expand description

A handler for application events.

Required Methods

Handles an event.

Implementors