Enum xswag_syntax_java::ast::block::BinOpType [] [src]

pub enum BinOpType {
    Assign,
    MulAssign,
    DivAssign,
    ModAssign,
    AddAssign,
    SubAssign,
    ShlAssign,
    ShrAssign,
    ShrUnAssign,
    AndAssign,
    XorAssign,
    OrAssign,
    LogicalOr,
    LogicalAnd,
    BitwiseOr,
    BitwiseAnd,
    BitwiseXor,
    Equals,
    Gt,
    Lt,
    Ge,
    Le,
    Ne,
    Add,
    Sub,
    Mul,
    Div,
    Mod,
    Shl,
    Shr,
    ShrUn,
}

Variants

Methods

impl BinOpType
[src]

Trait Implementations

impl Clone for BinOpType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for BinOpType
[src]

impl Debug for BinOpType
[src]

Formats the value using the given formatter.