Struct pipelines::Receiver [] [src]

pub struct Receiver<In> { /* fields omitted */ }

Passed to pipelines as their place to get incoming data from the previous stage.

It's possible to use by calling recv directly, but is primarily for its into_iter

Methods

impl<In> Receiver<In>
[src]

[src]

Get an item from the previous stage

returns None if the remote side has hung up and all data has been received

Trait Implementations

impl<In: Debug> Debug for Receiver<In>
[src]

[src]

Formats the value using the given formatter.

impl<In> IntoIterator for Receiver<In>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more