BoxFuture

Type Alias BoxFuture 

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

Boxed async future

Aliased Typeยง

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