Enum syntax::util::parser::ExprPrecedence[][src]

pub enum ExprPrecedence {
    Closure,
    Break,
    Continue,
    Ret,
    Yield,
    Range,
    Binary(BinOpKind),
    ObsoleteInPlace,
    Cast,
    Type,
    Assign,
    AssignOp,
    Box,
    AddrOf,
    Unary,
    Call,
    MethodCall,
    Field,
    Index,
    Try,
    InlineAsm,
    Mac,
    Array,
    Repeat,
    Tup,
    Lit,
    Path,
    Paren,
    If,
    IfLet,
    While,
    WhileLet,
    ForLoop,
    Loop,
    Match,
    Block,
    Catch,
    Struct,
    Async,
}

Variants

Methods

impl ExprPrecedence
[src]

Trait Implementations

impl Debug for ExprPrecedence
[src]

Formats the value using the given formatter. Read more

impl Clone for ExprPrecedence
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ExprPrecedence
[src]

Auto Trait Implementations