Enum rustc::hir::BinOp_ [] [src]

pub enum BinOp_ {
    BiAdd,
    BiSub,
    BiMul,
    BiDiv,
    BiRem,
    BiAnd,
    BiOr,
    BiBitXor,
    BiBitAnd,
    BiBitOr,
    BiShl,
    BiShr,
    BiEq,
    BiLt,
    BiLe,
    BiNe,
    BiGe,
    BiGt,
}
Unstable (rustc_private)

Variants

BiAdd
Unstable (rustc_private)

The + operator (addition)

BiSub
Unstable (rustc_private)

The - operator (subtraction)

BiMul
Unstable (rustc_private)

The * operator (multiplication)

BiDiv
Unstable (rustc_private)

The / operator (division)

BiRem
Unstable (rustc_private)

The % operator (modulus)

BiAnd
Unstable (rustc_private)

The && operator (logical and)

BiOr
Unstable (rustc_private)

The || operator (logical or)

BiBitXor
Unstable (rustc_private)

The ^ operator (bitwise xor)

BiBitAnd
Unstable (rustc_private)

The & operator (bitwise and)

BiBitOr
Unstable (rustc_private)

The | operator (bitwise or)

BiShl
Unstable (rustc_private)

The << operator (shift left)

BiShr
Unstable (rustc_private)

The >> operator (shift right)

BiEq
Unstable (rustc_private)

The == operator (equality)

BiLt
Unstable (rustc_private)

The < operator (less than)

BiLe
Unstable (rustc_private)

The <= operator (less than or equal to)

BiNe
Unstable (rustc_private)

The != operator (not equal to)

BiGe
Unstable (rustc_private)

The >= operator (greater than or equal to)

BiGt
Unstable (rustc_private)

The > operator (greater than)

Methods

impl BinOp_
[src]

fn as_str(self) -> &'static str

fn is_lazy(self) -> bool

fn is_shift(self) -> bool

fn is_comparison(self) -> bool

fn is_by_value(self) -> bool

Unstable (rustc_private)

Returns true if the binary operator takes its arguments by value

Trait Implementations

Derived Implementations

impl Copy for BinOp_
[src]

impl Debug for BinOp_
[src]

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

Formats the value using the given formatter.

impl Hash for BinOp_
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

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 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