pub type BoxFut<'s, T> = Pin<Box<dyn Future<Output = T> + Send + 's>>;
pub struct BoxFut<'s, T> { /* private fields */ }