BoxFut

Type Alias BoxFut 

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

Pinned, boxed, future type alias.

Aliased Typeยง

pub struct BoxFut<'lt, T> { /* private fields */ }