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