Struct futures_util::future::TryFlattenStream [−][src]
pub struct TryFlattenStream<Fut> where
Fut: TryFuture, { /* fields omitted */ }
Expand description
Future for the try_flatten_stream
method.
Trait Implementations
impl<Fut> FusedStream for TryFlattenStream<Fut> where
TryFlatten<Fut, Fut::Ok>: FusedStream,
Fut: TryFuture,
impl<Fut> FusedStream for TryFlattenStream<Fut> where
TryFlatten<Fut, Fut::Ok>: FusedStream,
Fut: TryFuture,
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