Enum rustc_ap_rustc_ast::token::TokenKind [−][src]
pub enum TokenKind {
Show variants
Eq,
Lt,
Le,
EqEq,
Ne,
Ge,
Gt,
AndAnd,
OrOr,
Not,
Tilde,
BinOp(BinOpToken),
BinOpEq(BinOpToken),
At,
Dot,
DotDot,
DotDotDot,
DotDotEq,
Comma,
Semi,
Colon,
ModSep,
RArrow,
LArrow,
FatArrow,
Pound,
Dollar,
Question,
SingleQuote,
OpenDelim(DelimToken),
CloseDelim(DelimToken),
Literal(Lit),
Ident(Symbol, bool),
Lifetime(Symbol),
Interpolated(Lrc<Nonterminal>),
DocComment(CommentKind, AttrStyle, Symbol),
Eof,
}Variants
BinOp(BinOpToken)BinOpEq(BinOpToken)Used by proc macros for representing lifetimes, not generated by lexer right now.
OpenDelim(DelimToken)An opening delimiter (e.g., {).
CloseDelim(DelimToken)A closing delimiter (e.g., }).
Literal(Lit)Identifier token.
Do not forget about NtIdent when you want to match on identifiers.
It’s recommended to use Token::(ident,uninterpolate,uninterpolated_span) to
treat regular and interpolated identifiers in the same way.
Lifetime(Symbol)Lifetime identifier token.
Do not forget about NtLifetime when you want to match on lifetime identifiers.
It’s recommended to use Token::(lifetime,uninterpolate,uninterpolated_span) to
treat regular and interpolated lifetime identifiers in the same way.
Interpolated(Lrc<Nonterminal>)DocComment(CommentKind, AttrStyle, Symbol)A doc comment token.
Symbol is the doc comment’s data excluding its “quotes” (///, /**, etc)
similarly to symbols in string literal tokens.
Implementations
Returns tokens that are likely to be typed accidentally instead of the current token. Enables better error recovery when the wrong token is found.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for TokenKindimpl !UnwindSafe for TokenKindBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
type Output = T
type Output = TShould always be Self
pub fn vzip(self) -> V