type BoxedFut<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
The future type in a PollAll.
PollAll
#[repr(transparent)]struct BoxedFut<'a, T> { /* private fields */ }