pub type BoxFuture<'f, T> = Pin<Box<dyn Future<Output = T> + Send + 'f>>;
Boxed async future
pub struct BoxFuture<'f, T> { /* private fields */ }