pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a>>;
An owned dynamically typed Future
Future
pub struct BoxFuture<'a, T> { /* private fields */ }