Async

Type Alias Async 

Source
pub type Async<T> = Pin<Box<dyn Future<Output = T>>>;
Expand description

Shorthand for Pin<Box<dyn Future<Output = T>>>.

Aliased Typeยง

pub struct Async<T> { /* private fields */ }