Enum tinyvec::TinyVecIterator[][src]

pub enum TinyVecIterator<A: Array> {
    Inline(ArrayVecIterator<A>),
    Heap(IntoIter<A::Item>),
}
This is supported on crate feature alloc only.

Iterator for consuming an TinyVec and returning owned elements.

Variants

Inline(ArrayVecIterator<A>)
Heap(IntoIter<A::Item>)

Implementations

impl<A: Array> TinyVecIterator<A>[src]

#[must_use]pub fn as_slice(&self) -> &[A::Item]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Returns the remaining items of this iterator as a slice.

Trait Implementations

impl<A: Array> Debug for TinyVecIterator<A> where
    A::Item: Debug
[src]

impl<A: Array> FusedIterator for TinyVecIterator<A>[src]

impl<A: Array> Iterator for TinyVecIterator<A>[src]

type Item = A::Item

The type of the elements being iterated over.

Auto Trait Implementations

impl<A> RefUnwindSafe for TinyVecIterator<A> where
    A: RefUnwindSafe,
    <A as Array>::Item: RefUnwindSafe

impl<A> Send for TinyVecIterator<A> where
    A: Send,
    <A as Array>::Item: Send

impl<A> Sync for TinyVecIterator<A> where
    A: Sync,
    <A as Array>::Item: Sync

impl<A> Unpin for TinyVecIterator<A> where
    A: Unpin,
    <A as Array>::Item: Unpin

impl<A> UnwindSafe for TinyVecIterator<A> where
    A: UnwindSafe,
    <A as Array>::Item: 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, 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.