Skip to main content

BoxFuture

Type Alias BoxFuture 

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

Type alias for a boxed pinned future that is Send.

Aliased Typeยง

pub struct BoxFuture<'a, T = ()> { /* private fields */ }