pub enum ParseError {
LexError(LexError),
UnknownError,
EmptyQueryError,
UnexpectedEoq,
InvalidEoq,
WrongKeyword(Span),
WrongToken(Span),
DatatypeMissmatch(Span),
NotAKeyword(Span),
NotAToken(Span),
NotAWord(Span),
NotADatatype(Span),
NotANumber(Span),
NotALiteral(Span),
ColumnCountMissmatch,
MissingParenthesis(Span),
LimitError,
ReservedKeyword(Span),
CommentIsNoString,
DebugError(String),
}
Variants
LexError | |
UnknownError | |
EmptyQueryError | |
UnexpectedEoq | |
InvalidEoq | |
WrongKeyword | |
WrongToken | |
DatatypeMissmatch | |
NotAKeyword | |
NotAToken | |
NotAWord | |
NotADatatype | |
NotANumber | |
NotALiteral | |
ColumnCountMissmatch | |
MissingParenthesis | |
LimitError | |
ReservedKeyword | |
|
DebugError | |
Trait Implementations
Derived Implementations