Enum rustc::mir::repr::BinOp [] [src]

pub enum BinOp {
    Add,
    Sub,
    Mul,
    Div,
    Rem,
    BitXor,
    BitAnd,
    BitOr,
    Shl,
    Shr,
    Eq,
    Lt,
    Le,
    Ne,
    Ge,
    Gt,
}
Unstable (rustc_private)

Variants

Add
Unstable (rustc_private)

The + operator (addition)

Sub
Unstable (rustc_private)

The - operator (subtraction)

Mul
Unstable (rustc_private)

The * operator (multiplication)

Div
Unstable (rustc_private)

The / operator (division)

Rem
Unstable (rustc_private)

The % operator (modulus)

BitXor
Unstable (rustc_private)

The ^ operator (bitwise xor)

BitAnd
Unstable (rustc_private)

The & operator (bitwise and)

BitOr
Unstable (rustc_private)

The | operator (bitwise or)

Shl
Unstable (rustc_private)

The << operator (shift left)

Shr
Unstable (rustc_private)

The >> operator (shift right)

Eq
Unstable (rustc_private)

The == operator (equality)

Lt
Unstable (rustc_private)

The < operator (less than)

Le
Unstable (rustc_private)

The <= operator (less than or equal to)

Ne
Unstable (rustc_private)

The != operator (not equal to)

Ge
Unstable (rustc_private)

The >= operator (greater than or equal to)

Gt
Unstable (rustc_private)

The > operator (greater than)

Methods

impl BinOp
[src]

fn to_hir_binop(self) -> BinOp_

Trait Implementations

Derived Implementations

impl Decodable for BinOp
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<BinOp, __D::Error>

impl Encodable for BinOp
[src]

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Eq for BinOp
[src]

impl PartialEq for BinOp
[src]

fn eq(&self, __arg_0: &BinOp) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Debug for BinOp
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for BinOp
[src]

fn clone(&self) -> BinOp

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for BinOp
[src]