Type Definition hcl_edit::expr::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.