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

pub enum Fixity {
    Left,
    Right,
    None,
}
🔬 This is a nightly-only experimental API. (rustc_private)

Variants

🔬 This is a nightly-only experimental API. (rustc_private)

The operator is left-associative

🔬 This is a nightly-only experimental API. (rustc_private)

The operator is right-associative

🔬 This is a nightly-only experimental API. (rustc_private)

The operator is not associative

Trait Implementations

impl Debug for Fixity
[src]

Formats the value using the given formatter.

impl PartialEq for Fixity
[src]

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

This method tests for !=.

impl Eq for Fixity
[src]