Enum syntax::util::parser::Fixity
[−]
[src]
pub enum Fixity {
Left,
Right,
None,
}🔬 This is a nightly-only experimental API. (
rustc_private)Variants
Left🔬 This is a nightly-only experimental API. (
rustc_private)The operator is left-associative
Right🔬 This is a nightly-only experimental API. (
rustc_private)The operator is right-associative
None🔬 This is a nightly-only experimental API. (
rustc_private)The operator is not associative
Trait Implementations
impl Debug for Fixity[src]
impl PartialEq for Fixity[src]
fn eq(&self, __arg_0: &Fixity) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.