Enum syntax::util::parser::Fixity   [−][src]
pub enum Fixity {
    Left,
    Right,
    None,
}Variants
LeftThe operator is left-associative
RightThe operator is right-associative
NoneThe operator is not associative
Trait Implementations
impl Debug for Fixity[src] 
impl Debug for Fixityfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Fixity[src] 
impl PartialEq for Fixityfn eq(&self, other: &Fixity) -> bool[src] 
fn eq(&self, other: &Fixity) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src] 
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Eq for Fixity[src] 
impl Eq for Fixity