Struct std::collections::btree_map::RangeMut
[−]
[src]
pub struct RangeMut<'a, K, V> where K: 'a, V: 'a {
// some fields omitted
}
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
A mutable iterator over a sub-range of BTreeMap's entries.
Trait Implementations
impl<'a, K, V> DoubleEndedIterator for RangeMut<'a, K, V>
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 RangeMut<'a, K, V>
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