struct FindFolder<'p, T, P> {
    find_op: &'p P,
    boundary: usize,
    match_position: MatchPosition,
    best_found: &'p AtomicUsize,
    item: Option<T>,
}Fields§
§find_op: &'p P§boundary: usize§match_position: MatchPosition§best_found: &'p AtomicUsize§item: Option<T>Trait Implementations§
Source§impl<'p, P: 'p + Fn(&T) -> bool, T> Folder<T> for FindFolder<'p, T, P>
 
impl<'p, P: 'p + Fn(&T) -> bool, T> Folder<T> for FindFolder<'p, T, P>
Source§fn full(&self) -> bool
 
fn full(&self) -> bool
Hint whether this 
Folder would like to stop processing
further items, e.g. if a search has been completed.Source§fn consume_iter<I>(self, iter: I) -> Selfwhere
    I: IntoIterator<Item = Item>,
 
fn consume_iter<I>(self, iter: I) -> Selfwhere
    I: IntoIterator<Item = Item>,
Consume items from the iterator until full, and return new sequential state. Read more
Auto Trait Implementations§
impl<'p, T, P> Freeze for FindFolder<'p, T, P>where
    T: Freeze,
impl<'p, T, P> RefUnwindSafe for FindFolder<'p, T, P>where
    P: RefUnwindSafe,
    T: RefUnwindSafe,
impl<'p, T, P> Send for FindFolder<'p, T, P>
impl<'p, T, P> Sync for FindFolder<'p, T, P>
impl<'p, T, P> Unpin for FindFolder<'p, T, P>where
    T: Unpin,
impl<'p, T, P> UnwindSafe for FindFolder<'p, T, P>where
    P: RefUnwindSafe,
    T: 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