pub trait EventDispatcher<E> {
    fn dispatch_event(&self, event: E);
}

Required methods

Implementors