hcl_edit::expr

Type Alias ObjectIterMut

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

A mutable iterator over the entries of an Object.

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

Aliased Typeยง

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