Type Alias LocalBoxFuture
type LocalBoxFuture = 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.