Skip to main content

BoxFut

Type Alias BoxFut 

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

A boxed future that is Send on native targets and !Send on wasm32.

Aliased Typeยง

pub struct BoxFut<'a, T> { /* private fields */ }