pub enum BinOpKind {
Show 18 variants
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).
Implementations
Trait Implementations
sourceimpl<__CTX> HashStable<__CTX> for BinOpKindwhere
__CTX: HashStableContext,
impl<__CTX> HashStable<__CTX> for BinOpKindwhere
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
impl Copy for BinOpKind
impl StructuralPartialEq for BinOpKind
Auto Trait Implementations
impl RefUnwindSafe for BinOpKind
impl Send for BinOpKind
impl Sync for BinOpKind
impl Unpin for BinOpKind
impl UnwindSafe for BinOpKind
Blanket Implementations
sourceimpl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Add
: 0 bytesSub
: 0 bytesMul
: 0 bytesDiv
: 0 bytesRem
: 0 bytesAnd
: 0 bytesOr
: 0 bytesBitXor
: 0 bytesBitAnd
: 0 bytesBitOr
: 0 bytesShl
: 0 bytesShr
: 0 bytesEq
: 0 bytesLt
: 0 bytesLe
: 0 bytesNe
: 0 bytesGe
: 0 bytesGt
: 0 bytes