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