Function boxed

Source
fn boxed<'a, I: Iterator<Item = Error> + 'a>(
    iter: I,
) -> Box<dyn Iterator<Item = Error> + 'a>
Expand description

Helper: Box an iterator of errors.