[][src]Struct autumn::combinators::StrCondition

pub struct StrCondition<P, F, E>(_, _, _);

The result of the str_condition function in the TextParserExt trait

Trait Implementations

impl<E, P: Parser<Span, E>, F: Fn(&str) -> bool> Parser<Span, E> for StrCondition<P, F, E>[src]

Auto Trait Implementations

impl<P, F, E> RefUnwindSafe for StrCondition<P, F, E> where
    E: RefUnwindSafe,
    F: RefUnwindSafe,
    P: RefUnwindSafe

impl<P, F, E> Send for StrCondition<P, F, E> where
    E: Send,
    F: Send,
    P: Send

impl<P, F, E> Sync for StrCondition<P, F, E> where
    E: Sync,
    F: Sync,
    P: Sync

impl<P, F, E> Unpin for StrCondition<P, F, E> where
    E: Unpin,
    F: Unpin,
    P: Unpin

impl<P, F, E> UnwindSafe for StrCondition<P, F, E> where
    E: UnwindSafe,
    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<'p, T, E, P> BoxedParserExt<'p, T, E> for P where
    E: 'p,
    P: 'p + Parser<T, E>,
    T: 'p, 
[src]

impl<T, E, P> ConcatParserExt<T, E> for P where
    P: Parser<T, E>,
    T: Concat + Clone
[src]

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

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

impl<T, E, P> ParserExt<T, E> for P where
    P: Parser<T, E>, 
[src]

impl<E, P> TextParserExt<E> for P where
    P: Parser<Span, E>, 
[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.