pub enum Token {
Show 30 variants
And,
Or,
Not,
Between,
Like,
Escape,
In,
Is,
True,
False,
Null,
Equal,
NotEqual,
GreaterThan,
GreaterOrEqual,
LessThan,
LessOrEqual,
Plus,
Minus,
Star,
Slash,
Percent,
LeftParen,
RightParen,
Comma,
Identifier(String),
StringLiteral(String),
IntegerLiteral(i64),
FloatLiteral(f64),
Eof,
}Expand description
Token types for SQL Expression Parser. Includes keywords, operators, literals, and delimiters.
Variants§
And
Or
Not
Between
Like
Escape
In
Is
True
False
Null
Equal
NotEqual
GreaterThan
GreaterOrEqual
LessThan
LessOrEqual
Plus
Minus
Star
Slash
Percent
LeftParen
RightParen
Comma
Identifier(String)
StringLiteral(String)
IntegerLiteral(i64)
FloatLiteral(f64)
Eof
Trait Implementations§
impl StructuralPartialEq for Token
Auto Trait Implementations§
impl Freeze for Token
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnsafeUnpin for Token
impl UnwindSafe for Token
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more