Struct parsimonious::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>

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

fn done(self) -> Option<char>