Struct rayon::iter::extend::ListStringConsumer
source · struct ListStringConsumer;
Trait Implementations§
source§impl Consumer<char> for ListStringConsumer
impl Consumer<char> for ListStringConsumer
§type Folder = ListStringFolder
type Folder = ListStringFolder
The type of folder that this consumer can be converted into.
§type Reducer = ListReducer
type Reducer = ListReducer
The type of reducer that is produced if this consumer is split.
§type Result = LinkedList<String>
type Result = LinkedList<String>
The type of result that this consumer will ultimately produce.
source§fn split_at(self, _index: usize) -> (Self, Self, Self::Reducer)
fn split_at(self, _index: usize) -> (Self, Self, Self::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 UnindexedConsumer<char> for ListStringConsumer
impl UnindexedConsumer<char> for ListStringConsumer
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 Freeze for ListStringConsumer
impl RefUnwindSafe for ListStringConsumer
impl Send for ListStringConsumer
impl Sync for ListStringConsumer
impl Unpin for ListStringConsumer
impl UnwindSafe for ListStringConsumer
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