Type Alias BoxedFuture

Source
pub type BoxedFuture<T> = Pin<Box<dyn Future<Output = T> + Send + 'static>>;
Expand description

Alias for a boxed future

Aliased Typeยง

pub struct BoxedFuture<T> { /* private fields */ }