Struct And
pom::combinator
pub struct And<P>(_);
impl<'a, I, O, P: Parser<'a, I, Output = O>> Parser<'a, I> for And<P>
type Output = bool
fn parse(&self, input: &'a [I], start: usize) -> Result<(bool, usize)>
Parse input at start position, return output and finished position.
impl<P> Send for And<P> where P: Send,
impl<P> Sync for And<P> where P: Sync,