pub enum Token {
Show 61 variants
Caret,
EqEq,
Eq,
AndAnd,
OrOr,
Plus,
Minus,
Slash,
Not,
Star,
Colon,
Comma,
Semi,
RArrow,
Dot,
Le,
Ne,
GtFollowedByGt,
Gt,
LtFollowedByLt,
Lt,
Ge,
At,
Pound,
Underscore,
Fn,
Async,
Iff,
FatArrow,
Let,
Mut,
Where,
Forall,
Exists,
In,
Impl,
Requires,
Ensures,
Literal(Lit),
Ident(Symbol),
OpenDelim(Delimiter),
CloseDelim(Delimiter),
Invalid,
Ref,
And,
Percent,
Strg,
Type,
If,
Else,
PathSep,
Qualifier,
Sort,
Opaque,
Local,
BitVec,
As,
Hrn,
Hdl,
DotDot,
Eof,
}
Variants§
Caret
EqEq
Eq
AndAnd
OrOr
Plus
Minus
Slash
Not
Star
Colon
Comma
Semi
RArrow
Dot
Le
Ne
GtFollowedByGt
Gt
LtFollowedByLt
Lt
Ge
At
Pound
Underscore
Fn
Async
Iff
FatArrow
Let
Mut
Where
Forall
Exists
In
Impl
Requires
Ensures
Literal(Lit)
Ident(Symbol)
OpenDelim(Delimiter)
CloseDelim(Delimiter)
Invalid
Ref
And
Percent
Strg
Type
If
Else
PathSep
Qualifier
Sort
Opaque
Local
BitVec
As
Hrn
Hdl
DotDot
Eof
Implementations§
Trait Implementations§
impl Copy for Token
impl StructuralPartialEq for Token
Auto Trait Implementations§
impl Freeze for Token
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnwindSafe for Token
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