Struct parsimonious::impls::StarStatefulParser [] [src]

pub struct StarStatefulParser<P, Q, T>(_, _, _);

Trait Implementations

impl<P: Debug, Q: Debug, T: Debug> Debug for StarStatefulParser<P, Q, T>
[src]

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

Formats the value using the given formatter.

impl<P: Clone, Q: Clone, T: Clone> Clone for StarStatefulParser<P, Q, T>
[src]

fn clone(&self) -> StarStatefulParser<P, Q, T>

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<P, T, S> StatefulParserOf<S> for StarStatefulParser<P, P::State, T> where P: Copy + GuardedParserOf<S>, T: Consumer<P::Output>
[src]

type Output = T

The type of the data being produced by the parser.

fn parse(self, value: S) -> ParseResult<Self, S>

Provides data to the parser. Read more

fn done(self) -> T

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.