pub type TypeIterator<'a> = Box<dyn Iterator<Item = &'a Type> + 'a>;Expand description
An abstract type for an iterator over &Type references.
Ideally we would not need to name this type explicitly, and could just
use an impl Iterator<Item = &Type> on any method that yields types.
Aliased Typeยง
struct TypeIterator<'a>(/* private fields */);