#[must_use = "streams do nothing unless polled"]
pub struct Then<St, Fut, F> { /* fields omitted */ }
A stream combinator which chains a computation onto each item produced by a
stream.
This structure is produced by the Stream::then
method.
Formats the value using the given formatter. Read more
Values yielded by the stream.
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