Type Alias BoxFuture
pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;Available on crate feature
alloc only.Expand description
Aliased Type§
#[repr(transparent)]pub struct BoxFuture<'a, T> { /* private fields */ }