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