Struct RangeMut

#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct RangeMut<'a, K: 'a, V: 'a> { pub(in ::collections::btree::map) inner: LeafRange<ValMut<'a>, K, V>, pub(in ::collections::btree::map) _marker: PhantomData<&'a mut (K, V)> }

A mutable iterator over a sub-range of entries in a BTreeMap.

This struct is created by the range_mut method on BTreeMap. See its documentation for more.

Fields

inner: LeafRange<ValMut<'a>, K, V>
_marker: PhantomData<&'a mut (K, V)>

Trait Implementations

impl<'a, K, V> DoubleEndedIterator for RangeMut<'a, K, V>

fn next_back(&mut self) -> Option<(&'a K, &'a mut V)>

impl<'a, K, V> Iterator for RangeMut<'a, K, V>

type Item = (&'a K, &'a mut V);
fn next(&mut self) -> Option<(&'a K, &'a mut V)>
fn last(self) -> Option<(&'a K, &'a mut V)>
fn min(self) -> Option<(&'a K, &'a mut V)>
where
    (&'a K, &'a mut V): Ord,
fn max(self) -> Option<(&'a K, &'a mut V)>
where
    (&'a K, &'a mut V): Ord,

impl<K, V> Default for RangeMut<'_, K, V>

fn default() -> Self

Creates an empty btree_map::RangeMut.

# use std::collections::btree_map;
let iter: btree_map::RangeMut<'_, u8, u8> = Default::default();
assert_eq!(iter.count(), 0);

impl<K, V> FusedIterator for RangeMut<'_, K, V>

impl<K: Debug, V: Debug> Debug for RangeMut<'_, K, V>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Auto Trait Implementations

impl<'a, K, V> !UnwindSafe for RangeMut<'a, K, V>

impl<'a, K, V> Freeze for RangeMut<'a, K, V> where LeafRange<ValMut<'a>, K, V>: Freeze, PhantomData<&'a mut (K, V)>: Freeze,

impl<'a, K, V> RefUnwindSafe for RangeMut<'a, K, V> where LeafRange<ValMut<'a>, K, V>: RefUnwindSafe, PhantomData<&'a mut (K, V)>: RefUnwindSafe,

impl<'a, K, V> Send for RangeMut<'a, K, V> where LeafRange<ValMut<'a>, K, V>: Send, PhantomData<&'a mut (K, V)>: Send,

impl<'a, K, V> Sync for RangeMut<'a, K, V> where LeafRange<ValMut<'a>, K, V>: Sync, PhantomData<&'a mut (K, V)>: Sync,

impl<'a, K, V> Unpin for RangeMut<'a, K, V> where LeafRange<ValMut<'a>, K, V>: Unpin, PhantomData<&'a mut (K, V)>: Unpin,

impl<'a, K, V> UnsafeUnpin for RangeMut<'a, K, V> where LeafRange<ValMut<'a>, K, V>: UnsafeUnpin, PhantomData<&'a mut (K, V)>: UnsafeUnpin,

Blanket Implementations

impl<I> IntoIterator for RangeMut<'a, K, V> where I: Iterator,

type Item = <I as Iterator>::Item;
type IntoIter = I;
fn into_iter(self) -> I

impl<T> Any for RangeMut<'a, K, V> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for RangeMut<'a, K, V> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for RangeMut<'a, K, V> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> From<T> for RangeMut<'a, K, V>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> SizeHint for RangeMut<'a, K, V> where T: ?Sized,

fn lower_bound(&self) -> usize
fn upper_bound(&self) -> Option<usize>

impl<T> SizedTypeProperties for RangeMut<'a, K, V>

impl<T, U> Into<U> for RangeMut<'a, K, V> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for RangeMut<'a, K, V> where U: Into<T>,

type Error = Infallible;
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto<U> for RangeMut<'a, K, V> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>