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