pub type Async<T> = Pin<Box<dyn Future<Output = T>>>;
Shorthand for Pin<Box<dyn Future<Output = T>>>.
Pin<Box<dyn Future<Output = T>>>
pub struct Async<T> { /* private fields */ }