pub enum Symbol {
Show 22 variants
LeftParen,
RightParen,
LeftBracket,
RightBracket,
LeftBrace,
RightBrace,
RightArrow,
Semicolon,
Colon,
Assign,
Comma,
Plus,
Minus,
Asterisk,
Slash,
Eq,
Ne,
Lt,
Gt,
Ampersand,
VerticalBar,
Percent,
}
Variants
LeftParen
‘(’
RightParen
‘)’
LeftBracket
[
RightBracket
]
LeftBrace
‘{’
RightBrace
‘}’
RightArrow
‘->’
Semicolon
;
Colon
:
,
Assign
=
Comma
,
Plus
+
Minus
-
Asterisk
*
Slash
/
Eq
==
Ne
!=
Lt
<
Gt
>
Ampersand
&
VerticalBar
|
Percent
%
Trait Implementations
impl Copy 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