Skip to main content

Iter

Type Alias Iter 

Source
pub type Iter<'a> = Box<dyn Iterator<Item = &'a Element> + 'a>;
Expand description

An iterator over the elements of a Template.

Values of this type are created by the iter method on Template. See its documentation for more.

Aliased Typeยง

pub struct Iter<'a>(/* private fields */);