nom::branch

Struct Choice

Source
pub struct Choice<T> { /* private fields */ }
Expand description

Wrapping structure for the alt() combinator implementation

Trait Implementations§

Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<&mut [A]>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<const N: usize, Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<[A; N]>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A,)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>, M: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L, M)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>, M: Parser<Input, Output = Output, Error = Error>, N: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L, M, N)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>, M: Parser<Input, Output = Output, Error = Error>, N: Parser<Input, Output = Output, Error = Error>, O: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>, M: Parser<Input, Output = Output, Error = Error>, N: Parser<Input, Output = Output, Error = Error>, O: Parser<Input, Output = Output, Error = Error>, P: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>, M: Parser<Input, Output = Output, Error = Error>, N: Parser<Input, Output = Output, Error = Error>, O: Parser<Input, Output = Output, Error = Error>, P: Parser<Input, Output = Output, Error = Error>, Q: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>, M: Parser<Input, Output = Output, Error = Error>, N: Parser<Input, Output = Output, Error = Error>, O: Parser<Input, Output = Output, Error = Error>, P: Parser<Input, Output = Output, Error = Error>, Q: Parser<Input, Output = Output, Error = Error>, R: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>, M: Parser<Input, Output = Output, Error = Error>, N: Parser<Input, Output = Output, Error = Error>, O: Parser<Input, Output = Output, Error = Error>, P: Parser<Input, Output = Output, Error = Error>, Q: Parser<Input, Output = Output, Error = Error>, R: Parser<Input, Output = Output, Error = Error>, S: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>, M: Parser<Input, Output = Output, Error = Error>, N: Parser<Input, Output = Output, Error = Error>, O: Parser<Input, Output = Output, Error = Error>, P: Parser<Input, Output = Output, Error = Error>, Q: Parser<Input, Output = Output, Error = Error>, R: Parser<Input, Output = Output, Error = Error>, S: Parser<Input, Output = Output, Error = Error>, T: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait
Source§

impl<Input: Clone, Output, Error: ParseError<Input>, A: Parser<Input, Output = Output, Error = Error>, B: Parser<Input, Output = Output, Error = Error>, C: Parser<Input, Output = Output, Error = Error>, D: Parser<Input, Output = Output, Error = Error>, E: Parser<Input, Output = Output, Error = Error>, F: Parser<Input, Output = Output, Error = Error>, G: Parser<Input, Output = Output, Error = Error>, H: Parser<Input, Output = Output, Error = Error>, I: Parser<Input, Output = Output, Error = Error>, J: Parser<Input, Output = Output, Error = Error>, K: Parser<Input, Output = Output, Error = Error>, L: Parser<Input, Output = Output, Error = Error>, M: Parser<Input, Output = Output, Error = Error>, N: Parser<Input, Output = Output, Error = Error>, O: Parser<Input, Output = Output, Error = Error>, P: Parser<Input, Output = Output, Error = Error>, Q: Parser<Input, Output = Output, Error = Error>, R: Parser<Input, Output = Output, Error = Error>, S: Parser<Input, Output = Output, Error = Error>, T: Parser<Input, Output = Output, Error = Error>, U: Parser<Input, Output = Output, Error = Error>> Parser<Input> for Choice<(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U)>

Source§

type Output = Output

Type of the produced value
Source§

type Error = Error

Error type of this parser
Source§

fn process<OM: OutputMode>( &mut self, input: Input, ) -> PResult<OM, Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Source§

fn map<G, O2>(self, g: G) -> Map<Self, G>
where G: FnMut(Self::Output) -> O2, Self: Sized,

Maps a function over the result of a parser
Source§

fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
where G: FnMut(Self::Output) -> Result<O2, E2>, Self::Error: FromExternalError<Input, E2>, Self: Sized,

Applies a function returning a Result over the result of a parser.
Source§

fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
where G: FnMut(Self::Output) -> Option<O2>, Self: Sized,

Applies a function returning an Option over the result of a parser.
Source§

fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
where G: FnMut(Self::Output) -> H, H: Parser<Input, Error = Self::Error>, Self: Sized,

Creates a second parser from the output of the first one, then apply over the rest of the input
Source§

fn and_then<G>(self, g: G) -> AndThen<Self, G>
where G: Parser<Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the output of the first one
Source§

fn and<G, O2>(self, g: G) -> And<Self, G>
where G: Parser<Input, Output = O2, Error = Self::Error>, Self: Sized,

Applies a second parser after the first one, return their results as a tuple
Source§

fn or<G>(self, g: G) -> Or<Self, G>
where G: Parser<Input, Output = Self::Output, Error = Self::Error>, Self: Sized,

Applies a second parser over the input if the first one failed
Source§

fn into<O2: From<Self::Output>, E2: From<Self::Error>>( self, ) -> Into<Self, O2, E2>
where Self: Sized,

automatically converts the parser’s output and error values to another type, as long as they implement the From trait

Auto Trait Implementations§

§

impl<T> Freeze for Choice<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Choice<T>
where T: RefUnwindSafe,

§

impl<T> Send for Choice<T>
where T: Send,

§

impl<T> Sync for Choice<T>
where T: Sync,

§

impl<T> Unpin for Choice<T>
where T: Unpin,

§

impl<T> UnwindSafe for Choice<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.