pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Type-erased future for async operations.
#[repr(transparent)]pub struct BoxFuture<'a, T> { /* private fields */ }