Trait parallel_stream::IntoParallelStream[][src]

pub trait IntoParallelStream {
    type Item: Send;
    type IntoParStream: ParallelStream<Item = Self::Item>;
    fn into_par_stream(self) -> Self::IntoParStream;
}
Expand description

Conversion into a ParallelStream.

Associated Types

The type of the elements being iterated over.

Which kind of stream are we turning this into?

Required methods

Creates a parallel stream from a value.

Implementations on Foreign Types

Implementors