BoxFuture

Type Alias BoxFuture 

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

Type alias for boxed async futures (reduces trait signature complexity).

Aliased Typeยง

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