Struct futures_util::stream::Chain
source · pub struct Chain<St1, St2> { /* private fields */ }
Expand description
Stream for the chain
method.
Trait Implementations§
source§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>,
source§fn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns
true
if the stream should no longer be polled.