pub enum FoldWhile<T> {
Continue(T),
Done(T),
}
Expand description
An enum used for controlling the execution of fold_while
.
See .fold_while()
for more information.
Variants
Continue(T)
Continue folding with this value
Done(T)
Fold is complete and will return this value
Implementations
Trait Implementations
impl<T: Copy> Copy for FoldWhile<T>
impl<T: Eq> Eq for FoldWhile<T>
impl<T> StructuralEq for FoldWhile<T>
impl<T> StructuralPartialEq for FoldWhile<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for FoldWhile<T> where
T: RefUnwindSafe,
impl<T> Send for FoldWhile<T> where
T: Send,
impl<T> Sync for FoldWhile<T> where
T: Sync,
impl<T> Unpin for FoldWhile<T> where
T: Unpin,
impl<T> UnwindSafe for FoldWhile<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more