pub type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send + 'static>>;
A boxed future for async operations.
pub struct BoxFuture<T> { /* private fields */ }