pub trait SyncMediatorInternalNext {
    fn next(&self) -> Result<(), TryRecvError>;
}
Expand description

Process the next event Ev from the channel. This will call all listeners with a clone of that event.

Required Methods

Implementors