[][src]Struct munch::Succeed

pub struct Succeed<F, E> { /* fields omitted */ }

Trait Implementations

impl<F: Clone, E: Clone> Clone for Succeed<F, E>[src]

impl<F: Copy, E: Copy> Copy for Succeed<F, E>[src]

impl<F: Debug, E: Debug> Debug for Succeed<F, E>[src]

impl<F, E, Input, Output> Parser<Input> for Succeed<F, E> where
    F: FnMut() -> Output, 
[src]

type Output = Output

type Error = E

impl<F: PartialEq, E: PartialEq> PartialEq<Succeed<F, E>> for Succeed<F, E>[src]

impl<F, E> StructuralPartialEq for Succeed<F, E>[src]

Auto Trait Implementations

impl<F, E> RefUnwindSafe for Succeed<F, E> where
    E: RefUnwindSafe,
    F: RefUnwindSafe

impl<F, E> Send for Succeed<F, E> where
    E: Send,
    F: Send

impl<F, E> Sync for Succeed<F, E> where
    E: Sync,
    F: Sync

impl<F, E> Unpin for Succeed<F, E> where
    E: Unpin,
    F: Unpin

impl<F, E> UnwindSafe for Succeed<F, E> where
    E: UnwindSafe,
    F: 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.