Struct rayon::par_iter::noop::NoopConsumer [] [src]

pub struct NoopConsumer;

Methods

impl NoopConsumer
[src]

Trait Implementations

impl<ITEM> Consumer<ITEM> for NoopConsumer
[src]

If it costs producer_cost to produce the items we will consume, returns cost adjusted to account for consuming them. Read more

Divide the consumer into two consumers, one processing items 0..index and one processing items from index... Also produces a reducer that can be used to reduce the results at the end. Read more

Convert the consumer into a folder that can consume items sequentially, eventually producing a final result. Read more

Reports whether the consumer has explicit weights.

Hint whether this Consumer would like to stop processing further items, e.g. if a search has been completed. Read more

impl<ITEM> Folder<ITEM> for NoopConsumer
[src]

Consume next item and return new sequential state.

Finish consuming items, produce final result.

Hint whether this Folder would like to stop processing further items, e.g. if a search has been completed. Read more

impl<ITEM> UnindexedConsumer<ITEM> for NoopConsumer
[src]