pub type Iter<'a> = Box<dyn Iterator<Item = (&'a str, &'a Item)> + 'a>;
An iterator type over Table’s Key/Item pairs
Table
Key
Item
struct Iter<'a>(/* private fields */);