Enum syntax::parse::token::Token [] [src]

pub enum Token {
    Eq,
    Lt,
    Le,
    EqEq,
    Ne,
    Ge,
    Gt,
    AndAnd,
    OrOr,
    Not,
    Tilde,
    BinOp(BinOpToken),
    BinOpEq(BinOpToken),
    At,
    Dot,
    DotDot,
    DotDotDot,
    Comma,
    Semi,
    Colon,
    ModSep,
    RArrow,
    LArrow,
    FatArrow,
    Pound,
    Dollar,
    Question,
    OpenDelim(DelimToken),
    CloseDelim(DelimToken),
    Literal(LitOption<Name>),
    Ident(Ident),
    Underscore,
    Lifetime(Ident),
    Interpolated(Nonterminal),
    DocComment(Name),
    MatchNt(IdentIdent),
    SubstNt(Ident),
    SpecialVarNt(SpecialMacroVar),
    Whitespace,
    Comment,
    Shebang(Name),
    Eof,
}
Unstable (rustc_private)

Variants

Eq
Unstable (rustc_private)
Lt
Unstable (rustc_private)
Le
Unstable (rustc_private)
EqEq
Unstable (rustc_private)
Ne
Unstable (rustc_private)
Ge
Unstable (rustc_private)
Gt
Unstable (rustc_private)
AndAnd
Unstable (rustc_private)
OrOr
Unstable (rustc_private)
Not
Unstable (rustc_private)
Tilde
Unstable (rustc_private)
BinOp(BinOpToken)
Unstable (rustc_private)
BinOpEq(BinOpToken)
Unstable (rustc_private)
At
Unstable (rustc_private)
Dot
Unstable (rustc_private)
DotDot
Unstable (rustc_private)
DotDotDot
Unstable (rustc_private)
Comma
Unstable (rustc_private)
Semi
Unstable (rustc_private)
Colon
Unstable (rustc_private)
ModSep
Unstable (rustc_private)
RArrow
Unstable (rustc_private)
LArrow
Unstable (rustc_private)
FatArrow
Unstable (rustc_private)
Pound
Unstable (rustc_private)
Dollar
Unstable (rustc_private)
Question
Unstable (rustc_private)
OpenDelim(DelimToken)
Unstable (rustc_private)

An opening delimiter, eg. {

CloseDelim(DelimToken)
Unstable (rustc_private)

A closing delimiter, eg. }

Literal(LitOption<Name>)
Unstable (rustc_private)
Ident(Ident)
Unstable (rustc_private)
Underscore
Unstable (rustc_private)
Lifetime(Ident)
Unstable (rustc_private)
Interpolated(Nonterminal)
Unstable (rustc_private)
DocComment(Name)
Unstable (rustc_private)

Doc comment

MatchNt(IdentIdent)
Unstable (rustc_private)

Parse a nonterminal (name to bind, name of NT)

SubstNt(Ident)
Unstable (rustc_private)

A syntactic variable that will be filled in by macro expansion.

SpecialVarNt(SpecialMacroVar)
Unstable (rustc_private)

A macro variable with special meaning.

Whitespace
Unstable (rustc_private)

Whitespace

Comment
Unstable (rustc_private)

Comment

Shebang(Name)
Unstable (rustc_private)
Eof
Unstable (rustc_private)

Methods

impl Token
[src]

fn is_like_gt(&self) -> bool

Unstable (rustc_private)

Returns true if the token starts with '>'.

fn can_begin_expr(&self) -> bool

Unstable (rustc_private)

Returns true if the token can appear at the start of an expression.

fn is_lit(&self) -> bool

Unstable (rustc_private)

Returns true if the token is any literal

fn is_ident(&self) -> bool

Unstable (rustc_private)

Returns true if the token is an identifier.

fn is_interpolated(&self) -> bool

Unstable (rustc_private)

Returns true if the token is interpolated.

fn is_path(&self) -> bool

Unstable (rustc_private)

Returns true if the token is an interpolated path.

fn is_lifetime(&self) -> bool

Unstable (rustc_private)

Returns true if the token is a lifetime.

fn is_mutability(&self) -> bool

Unstable (rustc_private)

Returns true if the token is either the mut or const keyword.

fn is_path_start(&self) -> bool

fn to_binop(&self) -> Option<BinOpKind>

Unstable (rustc_private)

Maps a token to its corresponding binary operator.

fn is_keyword(&self, kw: Keyword) -> bool

Unstable (rustc_private)

Returns true if the token is a given keyword, kw.

fn is_path_segment_keyword(&self) -> bool

fn is_any_keyword(&self) -> bool

Unstable (rustc_private)

Returns true if the token is either a strict or reserved keyword.

fn is_strict_keyword(&self) -> bool

Unstable (rustc_private)

Returns true if the token is a strict keyword.

fn is_reserved_keyword(&self) -> bool

Unstable (rustc_private)

Returns true if the token is a keyword reserved for possible future use.

fn mtwt_eq(&self, other: &Token) -> bool

Unstable (rustc_private)

Hygienic identifier equality comparison.

See styntax::ext::mtwt.

Trait Implementations

Derived Implementations

impl Debug for Token
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Hash for Token
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Eq for Token
[src]

impl PartialEq for Token
[src]

fn eq(&self, __arg_0: &Token) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Token) -> bool

This method tests for !=.

impl Decodable for Token
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Token, __D::Error>

impl Encodable for Token
[src]

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Clone for Token
[src]

fn clone(&self) -> Token

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more