[][src]Struct combinedfun::combinators::MapLeft

pub struct MapLeft<F>(_);

Trait Implementations

impl<I, O1, O2, F> ParserImpl<I> for MapLeft<F> where
    F: ParserImpl<I, Output = (O1, O2)>, 
[src]

type Output = O1

The output type of the parser

type Error = F::Error

The error type of the parser

Auto Trait Implementations

impl<F> Send for MapLeft<F> where
    F: Send

impl<F> Sync for MapLeft<F> where
    F: Sync

Blanket Implementations

impl<I, P, T> Tag<Span<I, P>> for T where
    I: Clone,
    P: Position<I>,
    T: Tag<I> + ?Sized
[src]

type Output = <T as Tag<I>>::Output

impl<F, I, O, E> ParserImpl<I> for F where
    F: Fn(I) -> Result<(I, O), E>, 
[src]

type Output = O

The output type of the parser

type Error = E

The error type of the parser

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

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

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.

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

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

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