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