pub enum Symbol {
Show 47 variants
EOF,
Ident(String),
Typename(String),
Value(String),
Regex(String),
Question,
Imply,
Is,
Equal,
NotEqual,
GreaterThan,
GreaterThanOrEqual,
LessThan,
LessThanOrEqual,
Ascript,
KAscript,
Arrow,
And,
Or,
Bar,
Div,
Mul,
Mod,
Plus,
Minus,
Pow,
Dot,
Comma,
SemiColon,
BackSlash,
LeftBracket,
RightBracket,
LeftParen,
RightParen,
LeftBrace,
RightBrace,
AndAlso,
Typeof,
As,
If,
Then,
Else,
Let,
Forall,
Type,
Normal,
Where,
}Variants
EOF
Ident(String)
Typename(String)
Value(String)
Regex(String)
Question
Imply
Is
Equal
NotEqual
GreaterThan
GreaterThanOrEqual
LessThan
LessThanOrEqual
Ascript
KAscript
Arrow
And
Or
Bar
Div
Mul
Mod
Plus
Minus
Pow
Dot
Comma
SemiColon
BackSlash
LeftBracket
RightBracket
LeftParen
RightParen
LeftBrace
RightBrace
AndAlso
Typeof
As
If
Then
Else
Let
Forall
Type
Normal
Where
Trait Implementations
sourceimpl PartialEq<Symbol> for Symbol
impl PartialEq<Symbol> for Symbol
impl Eq for Symbol
impl StructuralEq for Symbol
impl StructuralPartialEq for Symbol
Auto Trait Implementations
impl RefUnwindSafe for Symbol
impl Send for Symbol
impl Sync for Symbol
impl Unpin for Symbol
impl UnwindSafe for Symbol
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