We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08e4733 commit 0c165a3Copy full SHA for 0c165a3
futures-util/src/stream/unfold.rs
@@ -19,10 +19,6 @@ use pin_utils::{unsafe_pinned, unsafe_unpinned};
19
/// will stop producing items and return `Poll::Ready(None)` in future
20
/// calls to `poll()`.
21
///
22
-/// In case of error generated by the returned `Future`, the error will be
23
-/// returned by the `Stream`. The `Stream` will then yield
24
-/// `Poll::Ready(None)` in future calls to `poll()`.
25
-///
26
/// This function can typically be used when wanting to go from the "world of
27
/// futures" to the "world of streams": the provided closure can build a
28
/// `Future` using other library functions working on futures, and `unfold()`
0 commit comments