Struct core::stream::FromIter [−][src]
pub struct FromIter<I> { /* fields omitted */ }This is supported on non-crate feature
miri-test-libstd or test or doctest only.Expand description
A stream that was created from iterator.
This stream is created by the from_iter function.
See it documentation for more.
Trait Implementations
The type of items 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