pub type Result<T> = Result<T, LexerError>;
pub enum Result<T> { Ok(T), Err(LexerError), }
Contains the success value
Contains the error value