[][src]Enum cotton::prelude::FoldWhile

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(T)

Continue folding with this value

Done(T)

Fold is complete and will return this value

Methods

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 for FoldWhile<T> where
    T: Copy
[src]

impl<T> Clone for FoldWhile<T> where
    T: Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> Debug for FoldWhile<T> where
    T: Debug
[src]

impl<T> Eq for FoldWhile<T> where
    T: Eq
[src]

impl<T> PartialEq<FoldWhile<T>> for FoldWhile<T> where
    T: PartialEq<T>, 
[src]

Auto Trait Implementations

impl<T> Send for FoldWhile<T> where
    T: Send

impl<T> Sync for FoldWhile<T> where
    T: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> TapOps for T[src]

fn tap<R, F>(self, f: F) -> Self where
    F: FnOnce(&mut Self) -> R, 
[src]

Executes a closure on an object.