Enum escodegen::BinaryOperator[][src]

pub enum BinaryOperator {
    Add,
    And,
    BitwiseAnd,
    BitwiseOr,
    BitwiseXor,
    Div,
    Eq,
    Eqq,
    Gt,
    Gte,
    In,
    InstanceOf,
    Lt,
    Lte,
    Mod,
    Mul,
    NotEq,
    NotEqq,
    Or,
    Shl,
    Shr,
    Sub,
    UnsignedShr,
}

Variants

Trait Implementations

impl Debug for BinaryOperator
[src]

Formats the value using the given formatter. Read more

impl Display for BinaryOperator
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations