Enum zen_parser::lexer::error::LexerError
source · pub enum LexerError {
UnexpectedSymbol {
symbol: String,
},
UnmatchedSymbol {
symbol: char,
position: usize,
},
UnexpectedEof {
symbol: char,
position: usize,
},
}Variants§
Trait Implementations§
source§impl Debug for LexerError
impl Debug for LexerError
source§impl Display for LexerError
impl Display for LexerError
source§impl Error for LexerError
impl Error for LexerError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()