Enum itertools::FoldWhile [−][src]
pub enum FoldWhile<T> {
Continue(T),
Done(T),
}An enum used for controlling the execution of .fold_while().
See .fold_while() for more information.
Variants
Continue folding with this value
Fold is complete and will return this value
Implementations
impl<T> FoldWhile<T>[src]
impl<T> FoldWhile<T>[src]pub fn into_inner(self) -> T[src]
Return the value in the continue or done.
pub fn is_done(&self) -> bool[src]
Return true if self is Done, false if it is Continue.
Trait Implementations
impl<T: Copy> Copy for FoldWhile<T>[src]
impl<T: Eq> Eq for FoldWhile<T>[src]
impl<T> StructuralEq for FoldWhile<T>[src]
impl<T> StructuralPartialEq for FoldWhile<T>[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for FoldWhile<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for FoldWhile<T> where
T: Send,
T: Send,
impl<T> Sync for FoldWhile<T> where
T: Sync,
T: Sync,
impl<T> Unpin for FoldWhile<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for FoldWhile<T> where
T: UnwindSafe,
T: UnwindSafe,