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