pub type BoxFuture<'a, T = ()> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
pub struct BoxFuture<'a, T = ()> { /* private fields */ }