Struct parsed::matcher::Map[][src]

pub struct Map<M, T, F> { /* fields omitted */ }

Trait Implementations

impl<M, T, U, F> Matcher<U> for Map<M, T, F> where
    M: Matcher<T>,
    F: Fn(T) -> U + 'static, 
[src]

Auto Trait Implementations

impl<M, T, F> RefUnwindSafe for Map<M, T, F> where
    F: RefUnwindSafe,
    M: RefUnwindSafe,
    T: RefUnwindSafe

impl<M, T, F> Send for Map<M, T, F> where
    F: Send,
    M: Send,
    T: Send

impl<M, T, F> Sync for Map<M, T, F> where
    F: Sync,
    M: Sync,
    T: Sync

impl<M, T, F> Unpin for Map<M, T, F> where
    F: Unpin,
    M: Unpin,
    T: Unpin

impl<M, T, F> UnwindSafe for Map<M, T, F> where
    F: UnwindSafe,
    M: UnwindSafe,
    T: 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<M, T, U> ParserExt<T, U> for M where
    M: Matcher<(T, U)>, 
[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.