[]Struct async_std::stream::Merge

pub struct Merge<L, R> { /* fields omitted */ }
This is supported on unstable only.

A stream that merges two other streams into a single stream.

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

Trait Implementations

impl<L: Debug, R: Debug> Debug for Merge<L, R>[src]

impl<L, R, T> Stream for Merge<L, R> where
    L: Stream<Item = T>,
    R: Stream<Item = T>, 
[src]

type Item = T

The type of items yielded by this stream. Read more

impl<'__pin, L, R> Unpin for Merge<L, R> where
    __Origin<'__pin, L, R>: Unpin

Auto Trait Implementations

impl<L, R> RefUnwindSafe for Merge<L, R> where
    L: RefUnwindSafe,
    R: RefUnwindSafe

impl<L, R> Send for Merge<L, R> where
    L: Send,
    R: Send

impl<L, R> Sync for Merge<L, R> where
    L: Sync,
    R: Sync

impl<L, R> UnwindSafe for Merge<L, R> where
    L: UnwindSafe,
    R: 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<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.