pub enum FoldWhile<C, D> {
Continue(C),
Done(D),
}
Expand description
Controls folding behavior.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<C, D> Freeze for FoldWhile<C, D>
impl<C, D> RefUnwindSafe for FoldWhile<C, D>where
C: RefUnwindSafe,
D: RefUnwindSafe,
impl<C, D> Send for FoldWhile<C, D>
impl<C, D> Sync for FoldWhile<C, D>
impl<C, D> Unpin for FoldWhile<C, D>
impl<C, D> UnwindSafe for FoldWhile<C, D>where
C: UnwindSafe,
D: 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