Struct rayon::iter::while_some::WhileSomeFolder
source · struct WhileSomeFolder<'f, C> {
base: C,
full: &'f AtomicBool,
}
Fields§
§base: C
§full: &'f AtomicBool
Trait Implementations§
source§impl<'f, T, C> Folder<Option<T>> for WhileSomeFolder<'f, C>where
C: Folder<T>,
impl<'f, T, C> Folder<Option<T>> for WhileSomeFolder<'f, C>where
C: Folder<T>,
Auto Trait Implementations§
impl<'f, C> Freeze for WhileSomeFolder<'f, C>where
C: Freeze,
impl<'f, C> RefUnwindSafe for WhileSomeFolder<'f, C>where
C: RefUnwindSafe,
impl<'f, C> Send for WhileSomeFolder<'f, C>where
C: Send,
impl<'f, C> Sync for WhileSomeFolder<'f, C>where
C: Sync,
impl<'f, C> Unpin for WhileSomeFolder<'f, C>where
C: Unpin,
impl<'f, C> UnwindSafe for WhileSomeFolder<'f, C>where
C: UnwindSafe,
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