pub type BoxFut<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Boxed future type.
struct BoxFut<'a, T> {}