Struct IterMut

pub struct IterMut<'a, K, V> { /* private fields */ }

Parallel iterator over a mutable reference to a B-Tree map

Trait Implementations

impl<'a, K: Debug, V: Debug> Debug for IterMut<'a, K, V>

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

impl<'a, K: Sync + 'a, V: Send + 'a> ParallelIterator for IterMut<'a, K, V>

type Item = (&'a K, &'a mut V);
fn drive_unindexed<C>(self, consumer: C) -> C::Result
where
    C: UnindexedConsumer<Self::Item>,
fn opt_len(&self) -> Option<usize>

Auto Trait Implementations

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

impl<'a, K, V> Freeze for IterMut<'a, K, V> where IntoIter<(&'a K, &'a mut V)>: Freeze,

impl<'a, K, V> RefUnwindSafe for IterMut<'a, K, V> where IntoIter<(&'a K, &'a mut V)>: RefUnwindSafe,

impl<'a, K, V> Send for IterMut<'a, K, V> where IntoIter<(&'a K, &'a mut V)>: Send,

impl<'a, K, V> Sync for IterMut<'a, K, V> where IntoIter<(&'a K, &'a mut V)>: Sync,

impl<'a, K, V> Unpin for IterMut<'a, K, V> where IntoIter<(&'a K, &'a mut V)>: Unpin,

impl<'a, K, V> UnsafeUnpin for IterMut<'a, K, V> where IntoIter<(&'a K, &'a mut V)>: UnsafeUnpin,

Blanket Implementations

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

fn type_id(&self) -> TypeId

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

fn borrow(&self) -> &T

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

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

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

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> IntoEither for IterMut<'a, K, V>

impl<T> IntoParallelIterator for IterMut<'a, K, V> where T: ParallelIterator,

type Iter = T;
type Item = <T as ParallelIterator>::Item;
fn into_par_iter(self) -> T

impl<T> Pointable for IterMut<'a, K, V>

const ALIGN: usize = _;
type Init = T;
unsafe fn init(init: <T as Pointable>::Init) -> usize
unsafe fn deref<'a>(ptr: usize) -> &'a T
unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
unsafe fn drop(ptr: usize)

impl<T, U> Into<U> for IterMut<'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 IterMut<'a, K, V> where U: Into<T>,

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

impl<T, U> TryInto<U> for IterMut<'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>