[][src]Struct tinyvec_string::tinystring::Drain

pub struct Drain<'a, A: ByteArray> { /* fields omitted */ }
This is supported with target feature alloc only.

A draining iterator for TinyString.

This struct is created by the drain method on TinyString. See its documentation for more.

Trait Implementations

impl<A: ByteArray> Debug for Drain<'_, A>[src]

impl<A: ByteArray> DoubleEndedIterator for Drain<'_, A>[src]

impl<A: ByteArray> Drop for Drain<'_, A>[src]

impl<A: ByteArray> FusedIterator for Drain<'_, A>[src]

impl<A: ByteArray> Iterator for Drain<'_, A>[src]

type Item = char

The type of the elements being iterated over.

impl<A: ByteArray> Send for Drain<'_, A>[src]

impl<A: ByteArray> Sync for Drain<'_, A>[src]

Auto Trait Implementations

impl<'a, A> RefUnwindSafe for Drain<'a, A> where
    A: RefUnwindSafe
[src]

impl<'a, A> Unpin for Drain<'a, A>[src]

impl<'a, A> UnwindSafe for Drain<'a, A> where
    A: RefUnwindSafe
[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, 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.