pub type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a>>;
Expand description

BoxFuture, but without the Send requirement.

Aliased Type§

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