BoxFuture

Type Alias BoxFuture 

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

A type used for a future.

It must include a Send trait to be usable for the FutureQueue

Aliased Typeยง

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