[]Struct async_std::stream::FlatMap

pub struct FlatMap<S, U, F> { /* fields omitted */ }

A stream that maps each element to a stream, and yields the elements of the produced streams.

This struct is created by the flat_map method on Stream. See its documentation for more.

Trait Implementations

impl<S, U, F> Stream for FlatMap<S, U, F> where
    S: Stream,
    S::Item: IntoStream<IntoStream = U, Item = U::Item>,
    U: Stream,
    F: FnMut(S::Item) -> U, 
[src]

type Item = U::Item

The type of items yielded by this stream. Read more

impl<'__pin, S, U, F> Unpin for FlatMap<S, U, F> where
    __Origin<'__pin, S, U, F>: Unpin

Auto Trait Implementations

impl<S, U, F> Send for FlatMap<S, U, F> where
    F: Send,
    S: Send,
    U: Send

impl<S, U, F> Sync for FlatMap<S, U, F> where
    F: Sync,
    S: Sync,
    U: Sync

impl<S, U, F> UnwindSafe for FlatMap<S, U, F> where
    F: UnwindSafe,
    S: UnwindSafe,
    U: UnwindSafe

impl<S, U, F> RefUnwindSafe for FlatMap<S, U, F> where
    F: RefUnwindSafe,
    S: RefUnwindSafe,
    U: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]