pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Owned Send future used at the public protocol/connector boundary.
#[repr(transparent)]pub struct BoxFuture<'a, T> { /* private fields */ }