Struct parsimonious::impls::CharacterStatefulParser [] [src]

pub struct CharacterStatefulParser<F>(_);

Trait Implementations

impl<F: Debug> Debug for CharacterStatefulParser<F>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<F> Copy for CharacterStatefulParser<F> where F: Copy
[src]

impl<F> Clone for CharacterStatefulParser<F> where F: Copy
[src]

fn clone(&self) -> Self

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<'a, F> StatefulParserOf<&'a str> for CharacterStatefulParser<F> where F: Fn(char) -> bool
[src]

type Output = Option<char>

The type of the data being produced by the parser.

fn parse(self, value: &'a str) -> ParseResult<Self, &'a str>

Provides data to the parser. Read more

fn done(self) -> Option<char>

Tells the parser that it will not receive any more data. Read more

fn boxable(self) -> BoxableParser<Self> where Self: Sized

Make this parser boxable.