pub type ArrayIterMut<'a> = Box<dyn Iterator<Item = &'a mut Value> + 'a>;
An iterator type over Array’s Values
Array
Value
struct ArrayIterMut<'a>(/* private fields */);