Struct IntoIter
pub struct IntoIter<K, V> { /* private fields */ }
An owning iterator over the entries of an IndexMap.
This struct is created by the IndexMap::into_iter method
(provided by the IntoIterator trait). See its documentation for more.
Implementations
impl<K, V> IntoIter<K, V>
fn as_slice(&self) -> &Slice<K, V>Returns a slice of the remaining entries in the iterator.
fn as_mut_slice(&mut self) -> &mut Slice<K, V>Returns a mutable slice of the remaining entries in the iterator.
Trait Implementations
impl<K, V> Default for IntoIter<K, V>
fn default() -> Self
impl<K, V> DoubleEndedIterator for IntoIter<K, V>
fn next_back(&mut self) -> Option<Self::Item>fn nth_back(&mut self, n: usize) -> Option<Self::Item>
impl<K, V> ExactSizeIterator for IntoIter<K, V>
fn len(&self) -> usize
impl<K, V> FusedIterator for IntoIter<K, V>
impl<K, V> Iterator for IntoIter<K, V>
type Item = (K, V);fn next(&mut self) -> Option<Self::Item>fn size_hint(&self) -> (usize, Option<usize>)fn count(self) -> usizefn nth(&mut self, n: usize) -> Option<Self::Item>fn last(self) -> Option<Self::Item>fn collect<C>(self) -> C where C: FromIterator<Self::Item>,
impl<K: Clone, V: Clone> Clone for IntoIter<K, V>
fn clone(&self) -> IntoIter<K, V>
impl<K: Debug, V: Debug> Debug for IntoIter<K, V>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
Auto Trait Implementations
impl<K, V> Freeze for IntoIter<K, V>
where
IntoIter<Bucket<K, V>>: Freeze,
impl<K, V> RefUnwindSafe for IntoIter<K, V>
where
IntoIter<Bucket<K, V>>: RefUnwindSafe,
impl<K, V> Send for IntoIter<K, V>
where
IntoIter<Bucket<K, V>>: Send,
impl<K, V> Sync for IntoIter<K, V>
where
IntoIter<Bucket<K, V>>: Sync,
impl<K, V> Unpin for IntoIter<K, V>
where
IntoIter<Bucket<K, V>>: Unpin,
impl<K, V> UnsafeUnpin for IntoIter<K, V>
where
IntoIter<Bucket<K, V>>: UnsafeUnpin,
impl<K, V> UnwindSafe for IntoIter<K, V>
where
IntoIter<Bucket<K, V>>: UnwindSafe,
Blanket Implementations
impl<I> IntoIterator for IntoIter<K, V>
where
I: Iterator,
type Item = <I as Iterator>::Item;type IntoIter = I;fn into_iter(self) -> I
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> CloneToUninit for IntoIter<K, V>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for IntoIter<K, V>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for IntoIter<K, V>
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for IntoIter<K, V>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses 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>