struct FoldFolder<'r, C, ID, F> {
    base: C,
    fold_op: &'r F,
    item: ID,
}Fields§
§base: C§fold_op: &'r F§item: IDTrait Implementations§
Source§impl<'r, C, ID, F, T> Folder<T> for FoldFolder<'r, C, ID, F>
 
impl<'r, C, ID, F, T> Folder<T> for FoldFolder<'r, C, ID, F>
Source§type Result = <C as Folder<ID>>::Result
 
type Result = <C as Folder<ID>>::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<'r, C, ID, F> Freeze for FoldFolder<'r, C, ID, F>
impl<'r, C, ID, F> RefUnwindSafe for FoldFolder<'r, C, ID, F>
impl<'r, C, ID, F> Send for FoldFolder<'r, C, ID, F>
impl<'r, C, ID, F> Sync for FoldFolder<'r, C, ID, F>
impl<'r, C, ID, F> Unpin for FoldFolder<'r, C, ID, F>
impl<'r, C, ID, F> UnwindSafe for FoldFolder<'r, C, ID, F>
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