logo
pub type BoxFuture<T> = Pin<Box<dyn Future<Output = T>>>;
Expand description

A boxed future with no send bound or lifetime parameters.