Struct rayon::iter::flat_map::FlatMapConsumer
source · struct FlatMapConsumer<'f, C, F> {
base: C,
map_op: &'f F,
}
Expand description
//////////////////////////////////////////////////////////////////////// Consumer implementation
Fields§
§base: C
§map_op: &'f F
Implementations§
Trait Implementations§
source§impl<'f, T, U, C, F> Consumer<T> for FlatMapConsumer<'f, C, F>
impl<'f, T, U, C, F> Consumer<T> for FlatMapConsumer<'f, C, F>
§type Folder = FlatMapFolder<'f, C, F, <C as Consumer<<U as IntoParallelIterator>::Item>>::Result>
type Folder = FlatMapFolder<'f, C, F, <C as Consumer<<U as IntoParallelIterator>::Item>>::Result>
The type of folder that this consumer can be converted into.
§type Reducer = <C as Consumer<<U as IntoParallelIterator>::Item>>::Reducer
type Reducer = <C as Consumer<<U as IntoParallelIterator>::Item>>::Reducer
The type of reducer that is produced if this consumer is split.
§type Result = <C as Consumer<<U as IntoParallelIterator>::Item>>::Result
type Result = <C as Consumer<<U as IntoParallelIterator>::Item>>::Result
The type of result that this consumer will ultimately produce.
source§fn split_at(self, index: usize) -> (Self, Self, C::Reducer)
fn split_at(self, index: usize) -> (Self, Self, C::Reducer)
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.source§fn into_folder(self) -> Self::Folder
fn into_folder(self) -> Self::Folder
Convert the consumer into a folder that can consume items
sequentially, eventually producing a final result.
source§impl<'f, T, U, C, F> UnindexedConsumer<T> for FlatMapConsumer<'f, C, F>
impl<'f, T, U, C, F> UnindexedConsumer<T> for FlatMapConsumer<'f, C, F>
source§fn split_off_left(&self) -> Self
fn split_off_left(&self) -> Self
Splits off a “left” consumer and returns it. The
self
consumer should then be used to consume the “right” portion of
the data. (The ordering matters for methods like find_first –
values produced by the returned value are given precedence
over values produced by self
.) Once the left and right
halves have been fully consumed, you should reduce the results
with the result of to_reducer
.source§fn to_reducer(&self) -> Self::Reducer
fn to_reducer(&self) -> Self::Reducer
Creates a reducer that can be used to combine the results from
a split consumer.
Auto Trait Implementations§
impl<'f, C, F> Freeze for FlatMapConsumer<'f, C, F>where
C: Freeze,
impl<'f, C, F> RefUnwindSafe for FlatMapConsumer<'f, C, F>where
C: RefUnwindSafe,
F: RefUnwindSafe,
impl<'f, C, F> Send for FlatMapConsumer<'f, C, F>
impl<'f, C, F> Sync for FlatMapConsumer<'f, C, F>
impl<'f, C, F> Unpin for FlatMapConsumer<'f, C, F>where
C: Unpin,
impl<'f, C, F> UnwindSafe for FlatMapConsumer<'f, C, F>where
C: UnwindSafe,
F: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more