Trait parsimonious::StatefulParserOf [] [src]

pub trait StatefulParserOf<S> {
    type Output;
    fn parse(self, value: S) -> ParseResult<Self, S> where Self: Sized;
    fn done(self) -> Self::Output where Self: Sized;
}

Associated Types

type Output

Required Methods

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

fn done(self) -> Self::Output where Self: Sized

Implementors