Struct futures_util::stream::Chain [−][src]
pub struct Chain<St1, St2> { /* fields omitted */ }
Expand description
Stream for the chain
method.
Trait Implementations
impl<St1, St2> FusedStream for Chain<St1, St2> where
St1: Stream,
St2: FusedStream<Item = St1::Item>,
impl<St1, St2> FusedStream for Chain<St1, St2> where
St1: Stream,
St2: FusedStream<Item = St1::Item>,
Returns true
if the stream should no longer be polled.
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