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