pub type DynIterator<'a, T> = Box<dyn Iterator<Item = T> + 'a>;
Expand description

A dynamically dispatched iterator over items with the given lifetime.

Aliased Type§

struct DynIterator<'a, T>(/* private fields */);