hcl_edit::expr

Type Alias ObjectIter

Source
pub type ObjectIter<'a> = Box<dyn Iterator<Item = (&'a ObjectKey, &'a ObjectValue)> + 'a>;
Expand description

An iterator over the entries of an Object.

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

Aliased Typeยง

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