[][src]Struct alloc_wg::collections::btree_set::IntoIter

pub struct IntoIter<T, A: AllocRef> { /* fields omitted */ }

An owning iterator over the items of a BTreeSet.

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

Trait Implementations

impl<T: Debug, A: Debug + AllocRef> Debug for IntoIter<T, A>[src]

impl<T, A: AllocRef> DoubleEndedIterator for IntoIter<T, A>[src]

impl<T, A: AllocRef> ExactSizeIterator for IntoIter<T, A>[src]

impl<T, A: AllocRef> FusedIterator for IntoIter<T, A>[src]

impl<T, A: AllocRef> Iterator for IntoIter<T, A>[src]

type Item = T

The type of the elements being iterated over.

Auto Trait Implementations

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

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

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

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

impl<T, A> UnwindSafe for IntoIter<T, A> where
    A: UnwindSafe,
    T: RefUnwindSafe

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> IteratorExt for T where
    T: Iterator
[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.