pub type BoxFuture<Output> = Pin<Box<dyn Future<Output = Output> + Send + Sync + 'static>>;
pub struct BoxFuture<Output> { /* private fields */ }