pub type ScopedBoxFuture<'upper_bound, 'subject, T> = Pin<Box<dyn ScopedFuture<'upper_bound, 'subject, Output = T> + Send + 'subject>>;Expand description
A boxed future whose lifetime is upper bounded.
Aliased Type§
pub struct ScopedBoxFuture<'upper_bound, 'subject, T> { /* private fields */ }