pub type Iter<'a> = Box<dyn Iterator<Item = &'a Element> + 'a>;
An iterator over the elements of a Template.
Template
Values of this type are created by the iter method on Template. See its documentation for more.
iter
struct Iter<'a>(/* private fields */);