Struct futures::stream::Select [] [src]

#[must_use = "streams do nothing unless polled"]
pub struct Select<S1, S2> { /* fields omitted */ }

An adapter for merging the output of two streams.

The merged stream produces items from either of the underlying streams as they become available, and the streams are polled in a round-robin fashion. Errors, however, are not merged: you get at most one error at a time.

Trait Implementations

impl<S1, S2> Debug for Select<S1, S2> where
    S1: Debug,
    S2: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<S1, S2> Stream for Select<S1, S2> where
    S1: Stream,
    S2: Stream<Item = <S1 as Stream>::Item, Error = <S1 as Stream>::Error>, 
[src]

Values yielded by the stream.

Errors yielded by the stream.

[src]

Attempt to pull out the next value of this stream, registering the current task for wakeup if the value is not yet available, and returning None if the stream is exhausted. Read more

Auto Trait Implementations

impl<S1, S2> Send for Select<S1, S2> where
    S1: Send,
    S2: Send

impl<S1, S2> Sync for Select<S1, S2> where
    S1: Sync,
    S2: Sync