Macro async_request

Source
macro_rules! async_request {
    (|$req:ident| $($args:tt)*) => { ... };
}
Expand description

Returns a future that awaits a request defined by the given “closure”.

The “closure” is not a real closure. It may borrow from the current scope, use .await, and so on.