Skip to main content

BoxFuture

Type Alias BoxFuture 

Source
pub type BoxFuture<'a, Res, Err> = Pin<Box<dyn Future<Output = Result<Res, Err>> + 'a>>;
Expand description

boxed core::future::Future trait object with no extra auto trait bound(!Send and !Sync).

Aliased Typeยง

pub struct BoxFuture<'a, Res, Err> { /* private fields */ }