Struct IntoIter

pub struct IntoIter<K, V> { /* private fields */ }

Parallel iterator over a hash map

Trait Implementations

impl<K: Debug, V: Debug> Debug for IntoIter<K, V>

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

impl<K: Send, V: Send> ParallelIterator for IntoIter<K, V>

type Item = (K, 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<K, V> Freeze for IntoIter<K, V> where IntoIter<(K, V)>: Freeze,

impl<K, V> RefUnwindSafe for IntoIter<K, V> where IntoIter<(K, V)>: RefUnwindSafe,

impl<K, V> Send for IntoIter<K, V> where IntoIter<(K, V)>: Send,

impl<K, V> Sync for IntoIter<K, V> where IntoIter<(K, V)>: Sync,

impl<K, V> Unpin for IntoIter<K, V> where IntoIter<(K, V)>: Unpin,

impl<K, V> UnsafeUnpin for IntoIter<K, V> where IntoIter<(K, V)>: UnsafeUnpin,

impl<K, V> UnwindSafe for IntoIter<K, V> where IntoIter<(K, V)>: UnwindSafe,

Blanket Implementations

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

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for IntoIter<K, V> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for IntoIter<K, V> where T: ?Sized,

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

impl<T> From<T> for IntoIter<K, V>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> IntoEither for IntoIter<K, V>

impl<T> IntoParallelIterator for IntoIter<K, V> where T: ParallelIterator,

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

impl<T> Pointable for IntoIter<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 IntoIter<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 IntoIter<K, V> where U: Into<T>,

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

impl<T, U> TryInto<U> for IntoIter<K, V> where U: TryFrom<T>,

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