Producer

Trait Producer 

Source
pub trait Producer:
    WithSetup
    + Send
    + Sized {
    type Item;
    type IntoIter: Iterator<Item = Self::Item>;

    // Required methods
    fn into_iter(self) -> Self::IntoIter;
    fn split(self) -> (Self, Option<Self>);

    // Provided method
    fn fold_with<F>(self, folder: F) -> F
       where F: Folder<Self::Item> { ... }
}
Expand description

A variant on Producer which does not know its exact length or cannot represent it in a usize. These producers act like ordinary producers except that they cannot be told to split at a particular point. Instead, you just ask them to split ‘somewhere’.

(In principle, Producer could extend this trait; however, it does not because to do so would require producers to carry their own length with them.)

Required Associated Types§

Source

type Item

The type of item returned by this producer.

Source

type IntoIter: Iterator<Item = Self::Item>

The type of iterator we will become.

Required Methods§

Source

fn into_iter(self) -> Self::IntoIter

Convert self into an iterator; at this point, no more parallel splits are possible.

Source

fn split(self) -> (Self, Option<Self>)

Split midway into a new producer if possible, otherwise return None.

Provided Methods§

Source

fn fold_with<F>(self, folder: F) -> F
where F: Folder<Self::Item>,

Iterate the producer, feeding each element to folder, and stop when the folder is full (or all elements have been consumed).

The provided implementation is sufficient for most iterables.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§