Enum cfg::precedence::Associativity [] [src]

pub enum Associativity {
    Left,
    Right,
    Group,
}

Specifies the associativity of an operator.

Variants

Left

Left associative.

Right

Right associative.

Group

Group usually means the operand is delimited, e.g. by parentheses.

Trait Implementations

Derived Implementations

impl PartialEq for Associativity

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

1.0.0fn ne(&self, other: &Rhs) -> bool

impl Eq for Associativity

impl Copy for Associativity

impl Clone for Associativity

fn clone(&self) -> Associativity

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