Struct lib::parsers::flow::And[][src]

pub struct And<E, A, R, B>(pub E, pub R, _, _)
where
    E: Parser<A>,
    R: Parser<B>
;

Trait Implementations

impl<E, A, R, B> Parser<(A, B)> for And<E, A, R, B> where
    E: Parser<A>,
    R: Parser<B>, 
[src]

impl<E, A, R, B> Executable<(A, B)> for And<E, A, R, B> where
    E: Executable<A> + Parser<A>,
    R: Executable<B> + Parser<B>, 
[src]

Auto Trait Implementations

impl<E, A, R, B> Send for And<E, A, R, B> where
    A: Send,
    B: Send,
    E: Send,
    R: Send

impl<E, A, R, B> Sync for And<E, A, R, B> where
    A: Sync,
    B: Sync,
    E: Sync,
    R: Sync