pub type BoxedFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
BoxedFuture is the type alias of [futures::future::BoxFuture].
futures::future::BoxFuture
pub struct BoxedFuture<'a, T> { /* private fields */ }