BoxedFuture

Type Alias BoxedFuture 

Source
pub type BoxedFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Available on crate feature client only.
Expand description

A boxed future, mimics futures::future::BoxFuture

Aliased Typeยง

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