logo
pub type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a, Global>>;
Available on crate features macros and alloc only.
Expand description

BoxFuture, but without the Send requirement.