pub type LexerResult<T> = Result<T, Error>;
The result type for the lexer.
pub enum LexerResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value