Enum ldscript_parser::BinaryOperator [] [src]

pub enum BinaryOperator {
    LogicOr,
    LogicAnd,
    BitwiseOr,
    BitwiseAnd,
    Equals,
    NotEquals,
    Lesser,
    Greater,
    LesserOrEquals,
    GreaterOrEquals,
    ShiftRight,
    ShiftLeft,
    Plus,
    Minus,
    Multiply,
    Divide,
    Remainder,
}

Variants

Trait Implementations

impl Debug for BinaryOperator
[src]

Formats the value using the given formatter.

impl PartialEq for BinaryOperator
[src]

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

This method tests for !=.