Type Definition futures_util::future::LocalBoxFuture
source · pub type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a, Global>>;
Expand description
BoxFuture
, but without the Send
requirement.
pub type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a, Global>>;
BoxFuture
, but without the Send
requirement.