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