struct TakeAnyWhileFolder<'p, C, P> {
    base: C,
    predicate: &'p P,
    taking: &'p AtomicBool,
}Fields§
§base: C§predicate: &'p P§taking: &'p AtomicBoolTrait 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>
Source§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