Struct std::stream::FromIter [−][src]
pub struct FromIter<I> { /* fields omitted */ }
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
Auto Trait Implementations
impl<I> RefUnwindSafe for FromIter<I> where
I: RefUnwindSafe,
impl<I> UnwindSafe for FromIter<I> where
I: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more