BoxFuture

Type Alias BoxFuture 

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

A boxed future that returns a Result

Aliased Typeยง

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