Struct collections::btree::map::RangeMut
[−]
[src]
pub struct RangeMut<'a, K: 'a, V: 'a> { front: Handle<NodeRef<Mut<'a>, K, V, Leaf>, Edge>, back: Handle<NodeRef<Mut<'a>, K, V, Leaf>, Edge>, _marker: PhantomData<&'a mut (K, V)>, }
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.
Fields
front | Unstable ( collections #27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead |
back | Unstable ( collections #27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead |
_marker | Unstable ( collections #27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead |
Methods
impl<'a, K, V> RangeMut<'a, K, V>
unsafe fn next_unchecked(&mut self) -> (&'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> RangeMut<'a, K, V>
unsafe fn next_back_unchecked(&mut self) -> (&'a K, &'a mut V)
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead