[][src]Type Definition futures::future::LocalBoxFuture

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

BoxFuture, but without the Send requirement.