Struct futures_util::future::FlattenStream [−][src]
pub struct FlattenStream<F> where
F: Future, { /* fields omitted */ }
Expand description
Stream for the flatten_stream
method.
Trait Implementations
impl<F> FusedStream for FlattenStream<F> where
Flatten<F, <F as Future>::Output>: FusedStream,
F: Future,
impl<F> FusedStream for FlattenStream<F> where
Flatten<F, <F as Future>::Output>: FusedStream,
F: Future,
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