[][src]Struct abi_stable::std_types::map::IntoIter

#[repr(transparent)]pub struct IntoIter<K, V> { /* fields omitted */ }

An iterator that yields all the entries of an RHashMap, deallocating the hashmap afterwards.

This implements Iterator<Item= Tuple2< K, V > > + !Send + !Sync

Trait Implementations

impl<K, V> GetStaticEquivalent_ for IntoIter<K, V> where
    K: __StableAbi,
    V: __StableAbi
[src]

impl<K, V> Iterator for IntoIter<K, V>[src]

type Item = Tuple2<K, V>

The type of the elements being iterated over.

impl<K, V> StableAbi for IntoIter<K, V> where
    K: __StableAbi,
    V: __StableAbi
[src]

type IsNonZeroType = <DynTrait<'static, RBox<()>, ValIterInterface<u32, u32>> as __StableAbi>::IsNonZeroType

Whether this type has a single invalid bit-pattern. Read more

Auto Trait Implementations

impl<K, V> !RefUnwindSafe for IntoIter<K, V>[src]

impl<K, V> !Send for IntoIter<K, V>[src]

impl<K, V> !Sync for IntoIter<K, V>[src]

impl<K, V> Unpin for IntoIter<K, V> where
    K: Unpin,
    V: Unpin
[src]

impl<K, V> UnwindSafe for IntoIter<K, V> where
    K: UnwindSafe,
    V: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> GetWithMetadata for T[src]

type ForSelf = WithMetadata_<T, T>

This is always WithMetadata_<Self, Self>

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorExt for I where
    I: Iterator
[src]

impl<T> SelfOps for T where
    T: ?Sized
[src]

impl<This> TransmuteElement for This where
    This: ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The error type returned when the conversion fails.

impl<T> TypeIdentity for T where
    T: ?Sized
[src]

type Type = T

The same type as Self. Read more