parser_combinators::ParseResult [] [src]

type ParseResult<O, I> = Result<(O, Consumed<State<I>>)Consumed<ParseError>>;

A type alias over the specific Result type used to indicated parser success/failure. O is the type that is output on success I is the specific stream type used in the parser