Skip to main content

BoxFut

Type Alias BoxFut 

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

Sendable boxed future used by provider and tool traits.

Aliased Typeยง

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