Skip to main content

EventFuture

Trait EventFuture 

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

Runtime independent event future.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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