[][src]Type Definition honeycomb::Output

type Output<T> = Result<(T, String), Error>;

The Output type represents the output of a parser. Ok(T, String) result represents successfully parsed & lexed input. The T type represents the consumed and lexed input, and the String represents the remaining input.