Enum syn::BinOp [−][src]
pub enum BinOp { Add, Sub, Mul, Div, Rem, And, Or, BitXor, BitAnd, BitOr, Shl, Shr, Eq, Lt, Le, Ne, Ge, Gt, }
Variants
Add
The +
operator (addition)
Sub
The -
operator (subtraction)
Mul
The *
operator (multiplication)
Div
The /
operator (division)
Rem
The %
operator (modulus)
And
The &&
operator (logical and)
Or
The ||
operator (logical or)
BitXor
The ^
operator (bitwise xor)
BitAnd
The &
operator (bitwise and)
BitOr
The |
operator (bitwise or)
Shl
The <<
operator (shift left)
Shr
The >>
operator (shift right)
Eq
The ==
operator (equality)
Lt
The <
operator (less than)
Le
The <=
operator (less than or equal to)
Ne
The !=
operator (not equal to)
Ge
The >=
operator (greater than or equal to)
Gt
The >
operator (greater than)
Methods
impl BinOp
[src]
impl BinOp
Trait Implementations
impl ToTokens for BinOp
[src]
impl ToTokens for BinOp
impl Debug for BinOp
[src]
impl Debug for BinOp
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Copy for BinOp
[src]
impl Copy for BinOp
impl Clone for BinOp
[src]
impl Clone for BinOp
fn clone(&self) -> BinOp
[src]
fn clone(&self) -> BinOp
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Eq for BinOp
[src]
impl Eq for BinOp
impl PartialEq for BinOp
[src]
impl PartialEq for BinOp
fn eq(&self, other: &BinOp) -> bool
[src]
fn eq(&self, other: &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[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl Hash for BinOp
[src]
impl Hash for BinOp