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