pub type Lexed<'input> = Result<(usize, Token<'input>, usize), ParserError>;
The value produced by the Lexer when iterated
pub enum Lexed<'input> { Ok((usize, Token<'input>, usize)), Err(ParserError), }
Contains the success value
Contains the error value