#[must_use = "streams do nothing unless polled"]
pub struct Unfold<T, F, Fut> { /* fields omitted */ }
A stream which creates futures, polls them and return their result
This stream is returned by the futures::stream::unfold
method
Formats the value using the given formatter. Read more
[+]
type Item = It
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