pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Boxed future type for object-safe transport.
pub struct BoxFuture<'a, T> { /* private fields */ }