macro_rules! handle_iter {
($results:expr, $variant:ident$(,)? $($arg:ident$(: $value:expr)?),*) => { ... };
}Expand description
Collects results from an iterator, returning a variant that wraps all errors.
$results must be an impl Iterator<Item = Result<T, E>>.