Type Definition futures_util::future::LocalBoxFuture [−][src]
type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a, Global>>;
BoxFuture
, but without the Send
requirement.
type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a, Global>>;
BoxFuture
, but without the Send
requirement.