[][src]Macro indigo_macros::async_request

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

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.