Type Definition hcl_edit::expr::ObjectIntoIter
source · pub type ObjectIntoIter = Box<dyn Iterator<Item = (ObjectKey, ObjectValue)>>;Expand description
An owning iterator over the entries of an Object.
Values of this type are created by the into_iter method on Object (provided by the
IntoIterator trait). See its documentation for more.