Type Alias LocalBoxFuture
pub type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a>>;
BoxFuture, but without the Send requirement.
This type is often created by the boxed_local method on FutureExt. See its documentation for more.