pub trait Publisher<E>: Send + Sync {
    fn publish(&mut self, event: E);
}
Expand description

Any type that is able to publish events.

Required Methods

Publish an event.

Implementors