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