pub enum TokType {
Show 24 variants
LeftBrace,
RightBrace,
LeftBracket,
RightBracket,
Comma,
Colon,
Name,
SingleQuotedString,
DoubleQuotedString,
BlockComment,
LineComment,
Whitespace,
True,
False,
Null,
Integer,
Float,
Infinity,
Nan,
Exponent,
Hexadecimal,
Plus,
Minus,
EOF,
}
Variants§
LeftBrace
RightBrace
LeftBracket
RightBracket
Comma
Colon
Name
SingleQuotedString
DoubleQuotedString
BlockComment
LineComment
Whitespace
True
False
Null
Integer
Float
Infinity
Nan
Exponent
Hexadecimal
Plus
Minus
EOF
Trait Implementations§
impl StructuralPartialEq for TokType
Auto Trait Implementations§
impl Freeze for TokType
impl RefUnwindSafe for TokType
impl Send for TokType
impl Sync for TokType
impl Unpin for TokType
impl UnwindSafe for TokType
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