pub trait SignalNext
where Self: FnOnce() + Send + 'static,
{ }
Expand description

An alias for FnOnce() + Send + 'static. A callback used to signal that the observer is ready to handle new events.

Implementors§

source§

impl<__: ?Sized> SignalNext for __
where Self: FnOnce() + Send + 'static,