Struct std::collections::btree_map::IterMut
[−]
[src]
pub struct IterMut<'a, K, V> where K: 'a, V: 'a {
// some fields omitted
}
1.0.0A mutable iterator over a BTreeMap's entries.
Trait Implementations
impl<'a, K, V> ExactSizeIterator for IterMut<'a, K, V> where K: 'a, V: 'a
fn len(&self) -> usize
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
impl<'a, K, V> DoubleEndedIterator for IterMut<'a, K, V> where V: 'a, K: 'a
fn next_back(&mut self) -> Option<(&'a K, &'a mut V)>
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
impl<'a, K, V> Iterator for IterMut<'a, K, V> where K: 'a, V: 'a
type Item = (&'a K, &'a mut V)
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
fn next(&mut self) -> Option<(&'a K, &'a mut V)>
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
fn size_hint(&self) -> (usize, Option<usize>)
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead