Struct futures::stream::Iter[][src]

#[must_use = "streams do nothing unless polled"]
pub struct Iter<I> { /* fields omitted */ }

A stream which is just a shim over an underlying instance of Iterator.

This stream will never block and is always ready.

Trait Implementations

impl<I> Unpin for Iter<I>
[src]

impl<I> Debug for Iter<I> where
    I: Debug
[src]

Formats the value using the given formatter. Read more

impl<I> Stream for Iter<I> where
    I: Iterator
[src]

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

Auto Trait Implementations

impl<I> Send for Iter<I> where
    I: Send

impl<I> Sync for Iter<I> where
    I: Sync