Struct parsed::matcher::Expose[][src]

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

Trait Implementations

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

Auto Trait Implementations

impl<M, F> RefUnwindSafe for Expose<M, F> where
    F: RefUnwindSafe,
    M: RefUnwindSafe

impl<M, F> Send for Expose<M, F> where
    F: Send,
    M: Send

impl<M, F> Sync for Expose<M, F> where
    F: Sync,
    M: Sync

impl<M, F> Unpin for Expose<M, F> where
    F: Unpin,
    M: Unpin

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