pub enum TokenType {
Invariant,
Identifier(String),
Integer(i128),
Boolean(bool),
Operator(String),
LeftBrace,
RightBrace,
LeftParen,
RightParen,
Comma,
Eof,
}Expand description
Token types.
Variants§
Invariant
Invariant keyword.
Identifier(String)
Identifier.
Integer(i128)
Integer literal.
Boolean(bool)
Boolean literal.
Operator(String)
Operator.
LeftBrace
Left brace.
RightBrace
Right brace.
LeftParen
Left paren.
RightParen
Right paren.
Comma
Comma.
Eof
End of file.
Trait Implementations§
impl Eq for TokenType
impl StructuralPartialEq for TokenType
Auto Trait Implementations§
impl Freeze for TokenType
impl RefUnwindSafe for TokenType
impl Send for TokenType
impl Sync for TokenType
impl Unpin for TokenType
impl UnsafeUnpin for TokenType
impl UnwindSafe for TokenType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.