Struct rayon::iter::take_any_while::TakeAnyWhileFolder
source · struct TakeAnyWhileFolder<'p, C, P> {
base: C,
predicate: &'p P,
taking: &'p AtomicBool,
}
Fields§
§base: C
§predicate: &'p P
§taking: &'p AtomicBool
Trait Implementations§
source§impl<'p, T, C, P> Folder<T> for TakeAnyWhileFolder<'p, C, P>
impl<'p, T, C, P> Folder<T> for TakeAnyWhileFolder<'p, C, P>
§type Result = <C as Folder<T>>::Result
type Result = <C as Folder<T>>::Result
The type of result that will ultimately be produced by the folder.
source§fn consume_iter<I>(self, iter: I) -> Selfwhere
I: IntoIterator<Item = T>,
fn consume_iter<I>(self, iter: I) -> Selfwhere
I: IntoIterator<Item = T>,
Consume items from the iterator until full, and return new sequential state. Read more
Auto Trait Implementations§
impl<'p, C, P> Freeze for TakeAnyWhileFolder<'p, C, P>where
C: Freeze,
impl<'p, C, P> RefUnwindSafe for TakeAnyWhileFolder<'p, C, P>where
C: RefUnwindSafe,
P: RefUnwindSafe,
impl<'p, C, P> Send for TakeAnyWhileFolder<'p, C, P>
impl<'p, C, P> Sync for TakeAnyWhileFolder<'p, C, P>
impl<'p, C, P> Unpin for TakeAnyWhileFolder<'p, C, P>where
C: Unpin,
impl<'p, C, P> UnwindSafe for TakeAnyWhileFolder<'p, C, P>where
C: UnwindSafe,
P: 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