macro_rules! opaque_future {
    ($(#[$m:meta])* pub type $name:ident = $actual:ty;) => { ... };
    ($(#[$m:meta])* pub type $name:ident<$($param:ident),*> = $actual:ty;) => { ... };
}
Expand description

Define a type that implements std::future::Future.