struct TryFoldFolder<'r, C, U: Try, F> {
    base: C,
    fold_op: &'r F,
    control: ControlFlow<U::Residual, U::Output>,
}Fields§
§base: C§fold_op: &'r F§control: ControlFlow<U::Residual, U::Output>Trait Implementations§
Source§impl<'r, C, U, F, T> Folder<T> for TryFoldFolder<'r, C, U, F>
 
impl<'r, C, U, F, T> Folder<T> for TryFoldFolder<'r, C, U, F>
Source§type Result = <C as Folder<U>>::Result
 
type Result = <C as Folder<U>>::Result
The type of result that will ultimately be produced by the folder.
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<'r, C, U, F> Freeze for TryFoldFolder<'r, C, U, F>
impl<'r, C, U, F> RefUnwindSafe for TryFoldFolder<'r, C, U, F>where
    C: RefUnwindSafe,
    F: RefUnwindSafe,
    <U as Try>::Output: RefUnwindSafe,
    <U as Try>::Residual: RefUnwindSafe,
impl<'r, C, U, F> Send for TryFoldFolder<'r, C, U, F>
impl<'r, C, U, F> Sync for TryFoldFolder<'r, C, U, F>
impl<'r, C, U, F> Unpin for TryFoldFolder<'r, C, U, F>
impl<'r, C, U, F> UnwindSafe for TryFoldFolder<'r, C, U, F>where
    C: UnwindSafe,
    F: RefUnwindSafe,
    <U as Try>::Output: UnwindSafe,
    <U as Try>::Residual: 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