Type Alias BoxFuture

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

Dynamic future type.

Aliased Typeยง

struct BoxFuture<'lt, T> {}