There was an error while loading. Please reload this page.
1 parent 40c4e1a commit 063798cCopy full SHA for 063798c
src/stream/from_iter.rs
@@ -6,6 +6,12 @@ use crate::stream::Stream;
6
use crate::task::{Context, Poll};
7
8
pin_project! {
9
+ /// A stream that created from iterator
10
+ ///
11
+ /// This stream is created by the [`from_iter`] function.
12
+ /// See it documentation for more.
13
14
+ /// [`from_iter`]: fn.from_iter.html
15
#[derive(Debug)]
16
pub struct FromIter<I> {
17
iter: I,
0 commit comments