BoxFuture

Type Alias BoxFuture 

Source
pub type BoxFuture<T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'static>>;

Aliased Typeยง

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