Struct parsimonious::impls::ImpossibleStatefulParser [] [src]

pub struct ImpossibleStatefulParser<T>(_, _);

Trait Implementations

impl<T: Debug> Debug for ImpossibleStatefulParser<T>
[src]

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

Formats the value using the given formatter.

impl<T: Clone> Clone for ImpossibleStatefulParser<T>
[src]

fn clone(&self) -> ImpossibleStatefulParser<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<T: Copy> Copy for ImpossibleStatefulParser<T>
[src]

impl<T, S> StatefulParserOf<S> for ImpossibleStatefulParser<T>
[src]

type Output = T

The type of the data being produced by the parser.

fn parse(self, _: 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.