pub struct And<F, G> { /* private fields */ }
Expand description
Implementation of Parser::and
Trait Implementations§
source§impl<'a, I, O1, O2, E, F: Parser<I, O1, E>, G: Parser<I, O2, E>> Parser<I, (O1, O2), E> for And<F, G>
impl<'a, I, O1, O2, E, F: Parser<I, O1, E>, G: Parser<I, O2, E>> Parser<I, (O1, O2), E> for And<F, G>
source§fn parse(&mut self, i: I) -> IResult<I, (O1, O2), E>
fn parse(&mut self, i: I) -> IResult<I, (O1, O2), E>
A parser takes in input type, and returns a
Result
containing
either the remaining input and the output value, or an errorsource§fn flat_map<G, H, O2>(self, g: G) -> FlatMap<Self, G, O>
fn flat_map<G, H, O2>(self, g: G) -> FlatMap<Self, G, O>
Creates a second parser from the output of the first one, then apply over the rest of the input
source§fn and_then<G, O2>(self, g: G) -> AndThen<Self, G, O>
fn and_then<G, O2>(self, g: G) -> AndThen<Self, G, O>
Applies a second parser over the output of the first one
source§fn and<G, O2>(self, g: G) -> And<Self, G>
fn and<G, O2>(self, g: G) -> And<Self, G>
Applies a second parser after the first one, return their results as a tuple
Auto Trait Implementations§
impl<F, G> Freeze for And<F, G>
impl<F, G> RefUnwindSafe for And<F, G>where
F: RefUnwindSafe,
G: RefUnwindSafe,
impl<F, G> Send for And<F, G>
impl<F, G> Sync for And<F, G>
impl<F, G> Unpin for And<F, G>
impl<F, G> UnwindSafe for And<F, G>where
F: UnwindSafe,
G: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more