Struct hashbrown::hash_set::IntoIter[][src]

pub struct IntoIter<K, A: Allocator + Clone = Global> { /* fields omitted */ }

An owning iterator over the items of a HashSet.

This struct is created by the into_iter method on HashSet (provided by the IntoIterator trait). See its documentation for more.

Trait Implementations

impl<K: Debug, A: Allocator + Clone> Debug for IntoIter<K, A>[src]

impl<K, A: Allocator + Clone> ExactSizeIterator for IntoIter<K, A>[src]

impl<K, A: Allocator + Clone> FusedIterator for IntoIter<K, A>[src]

impl<K, A: Allocator + Clone> Iterator for IntoIter<K, A>[src]

type Item = K

The type of the elements being iterated over.

Auto Trait Implementations

impl<K, A> RefUnwindSafe for IntoIter<K, A> where
    A: RefUnwindSafe,
    K: RefUnwindSafe

impl<K, A> Send for IntoIter<K, A> where
    K: Send

impl<K, A> Sync for IntoIter<K, A> where
    K: Sync

impl<K, A> Unpin for IntoIter<K, A> where
    A: Unpin,
    K: Unpin

impl<K, A> UnwindSafe for IntoIter<K, A> where
    A: UnwindSafe,
    K: RefUnwindSafe + UnwindSafe

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, 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<T> Pointable for T[src]

type Init = T

The type for initializers.

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.