Skip to main content

BoxedFut

Type Alias BoxedFut 

Source
type BoxedFut<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Expand description

The future type in a PollAll.

Aliased Typeยง

#[repr(transparent)]
struct BoxedFut<'a, T> { /* private fields */ }