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