[][src]Struct async_std::stream::FromIter

pub struct FromIter<I> { /* fields omitted */ }

A stream that was created from iterator.

This stream is created by the from_iter function. See it documentation for more.

Trait Implementations

impl<I: Clone> Clone for FromIter<I>[src]

impl<I: Debug> Debug for FromIter<I>[src]

impl<T: DoubleEndedIterator> DoubleEndedStream for FromIter<T>[src]

impl<I: Iterator> Stream for FromIter<I>[src]

type Item = I::Item

The type of items yielded by this stream.

impl<'__pin, I> Unpin for FromIter<I> where
    __Origin<'__pin, I>: Unpin
[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for FromIter<I> where
    I: RefUnwindSafe
[src]

impl<I> Send for FromIter<I> where
    I: Send
[src]

impl<I> Sync for FromIter<I> where
    I: Sync
[src]

impl<I> UnwindSafe for FromIter<I> where
    I: 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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.