Function batch_async

Source
pub async fn batch_async<T>(
    requests: impl IntoIterator<Item = impl Future<Output = T>>,
) -> Vec<T>
Expand description

The async version of batch.

See batch for more information.