EventFuture

Trait EventFuture 

Source
pub trait EventFuture: Send + Future<Output = ()> { }
Expand description

Runtime independent event future.

Implementors§

Source§

impl<T> EventFuture for T
where T: Future<Output = ()> + Send,