Struct std::collections::treemap::MutEntries[src]
pub struct MutEntries<'a, K, V> {
// some fields omitted
}Lazy forward iterator over a map that allows for the mutation of the values.
Trait Implementations
impl<'a, K, V> Iterator<(&'a K, &'a mut V)> for MutEntries<'a, K, V>
fn next<'a, K, V>(&mut self) -> Option<(&'a K, &'a mut V)>
Advance the iterator to the next node (in order) and return a
tuple with a reference to the key and value. If there are no
more nodes, return None.