pub enum TokenKind {
Keyword(Keyword),
Symbol(Symbol),
Identifier(String),
Integer(i16),
Char(char),
}
Expand description
We have various kinds of tokens
Variants
Keyword(Keyword)
Symbol(Symbol)
Identifier(String)
Sequence of letters, digits, and underscore, not starting with digit
Integer(i16)
Char(char)
Trait Implementations
impl Eq for TokenKind
impl StructuralEq for TokenKind
impl StructuralPartialEq for TokenKind
Auto Trait Implementations
impl RefUnwindSafe for TokenKind
impl Send for TokenKind
impl Sync for TokenKind
impl Unpin for TokenKind
impl UnwindSafe for TokenKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more