Type Definition combine::ParseResult [] [src]

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

A type alias over the specific Result type used by parsers to indicate wether they were successful or not. O is the type that is output on success I is the specific stream type used in the parser