[][src]Struct gobble::ptrait::MapExp

pub struct MapExp<P: Parser, F: Fn(Expected) -> Expected> { /* fields omitted */ }

Trait Implementations

impl<P: Parser, F: Fn(Expected) -> Expected> Parser for MapExp<P, F>[src]

type Out = P::Out

Auto Trait Implementations

impl<P, F> RefUnwindSafe for MapExp<P, F> where
    F: RefUnwindSafe,
    P: RefUnwindSafe

impl<P, F> Send for MapExp<P, F> where
    F: Send,
    P: Send

impl<P, F> Sync for MapExp<P, F> where
    F: Sync,
    P: Sync

impl<P, F> Unpin for MapExp<P, F> where
    F: Unpin,
    P: Unpin

impl<P, F> UnwindSafe for MapExp<P, F> where
    F: UnwindSafe,
    P: 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<V, F> Parser for F where
    F: for<'a> Fn(&LCChars<'a>) -> Result<(LCChars<'a>, V, Option<ParseError>), ParseError>, 
[src]

type Out = V

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.