[][src]Struct munch::Fold

pub struct Fold<A, R: Range, Acc, F>(_, _, _, _);

Trait Implementations

impl<A: Clone, R: Clone + Range, Acc: Clone, F: Clone> Clone for Fold<A, R, Acc, F>[src]

impl<A: Copy, R: Copy + Range, Acc: Copy, F: Copy> Copy for Fold<A, R, Acc, F>[src]

impl<A: Debug, R: Debug + Range, Acc: Debug, F: Debug> Debug for Fold<A, R, Acc, F>[src]

impl<A, R, Acc, F, Input, Output> Parser<Input> for Fold<A, R, Acc, F> where
    A: Parser<Input>,
    R: Range,
    Acc: FnMut() -> Output,
    F: FnMut(Output, A::Output) -> Output,
    Input: Copy
[src]

type Output = Output

type Error = A::Error

impl<A: PartialEq, R: PartialEq + Range, Acc: PartialEq, F: PartialEq> PartialEq<Fold<A, R, Acc, F>> for Fold<A, R, Acc, F>[src]

impl<A, R: Range, Acc, F> StructuralPartialEq for Fold<A, R, Acc, F>[src]

Auto Trait Implementations

impl<A, R, Acc, F> RefUnwindSafe for Fold<A, R, Acc, F> where
    A: RefUnwindSafe,
    Acc: RefUnwindSafe,
    F: RefUnwindSafe,
    R: RefUnwindSafe

impl<A, R, Acc, F> Send for Fold<A, R, Acc, F> where
    A: Send,
    Acc: Send,
    F: Send,
    R: Send

impl<A, R, Acc, F> Sync for Fold<A, R, Acc, F> where
    A: Sync,
    Acc: Sync,
    F: Sync,
    R: Sync

impl<A, R, Acc, F> Unpin for Fold<A, R, Acc, F> where
    A: Unpin,
    Acc: Unpin,
    F: Unpin,
    R: Unpin

impl<A, R, Acc, F> UnwindSafe for Fold<A, R, Acc, F> where
    A: UnwindSafe,
    Acc: UnwindSafe,
    F: UnwindSafe,
    R: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.