pub type LexResult<T> = Result<T, LexErr>;
字句解析の結果
enum LexResult<T> { Ok(T), Err(LexErr), }
Contains the success value
Contains the error value