pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Type alias for boxed async futures.
pub struct BoxFuture<'a, T> { /* private fields */ }