pub struct Map<F, G, O1> { /* private fields */ }
Expand description
Implementation of Parser::map
Trait Implementations§
Source§impl<'a, I, O1, O2, E, F: Parser<I, O1, E>, G: Fn(O1) -> O2> Parser<I, O2, E> for Map<F, G, O1>
impl<'a, I, O1, O2, E, F: Parser<I, O1, E>, G: Fn(O1) -> O2> Parser<I, O2, E> for Map<F, G, O1>
Source§fn parse(&mut self, i: I) -> IResult<I, O2, E>
fn parse(&mut self, i: I) -> IResult<I, 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, O1> Freeze for Map<F, G, O1>
impl<F, G, O1> RefUnwindSafe for Map<F, G, O1>
impl<F, G, O1> Send for Map<F, G, O1>
impl<F, G, O1> Sync for Map<F, G, O1>
impl<F, G, O1> Unpin for Map<F, G, O1>
impl<F, G, O1> UnwindSafe for Map<F, G, O1>
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