pub trait SyncMediatorInternal<Ev: Debug> {
    fn publish(&self, event: Ev);
}
Expand description

Publish an event Ev from within a handler.

Required Methods

Implementors