pub type IterMut<'a> = Box<dyn Iterator<Item = (KeyMut<'a>, &'a mut Item)> + 'a>;
A mutable iterator type over Table’s Key/Item pairs
Table
Key
Item
struct IterMut<'a>(/* private fields */);