pub enum BinaryOpType {
Show 19 variants
Mul,
Div,
Mod,
Add,
Sub,
Lhs,
Rhs,
Lt,
Gt,
Lte,
Gte,
BitAnd,
BitOr,
BitXor,
Eq,
Neq,
And,
Or,
In,
}
Variants§
Mul
Div
Mod
Implemented as intrinsic, put here for completeness
Add
Sub
Lhs
Rhs
Lt
Gt
Lte
Gte
BitAnd
BitOr
BitXor
Eq
Neq
And
Or
In
Trait Implementations§
Source§impl Clone for BinaryOpType
impl Clone for BinaryOpType
Source§fn clone(&self) -> BinaryOpType
fn clone(&self) -> BinaryOpType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BinaryOpType
impl Debug for BinaryOpType
Source§impl Display for BinaryOpType
impl Display for BinaryOpType
Source§impl PartialEq for BinaryOpType
impl PartialEq for BinaryOpType
Source§impl Trace for BinaryOpType
impl Trace for BinaryOpType
Source§fn finalize_glue(&self)
fn finalize_glue(&self)
Runs Finalize::finalize() on this object and all
contained subobjects
impl Copy for BinaryOpType
impl StructuralPartialEq for BinaryOpType
Auto Trait Implementations§
impl Freeze for BinaryOpType
impl RefUnwindSafe for BinaryOpType
impl Send for BinaryOpType
impl Sync for BinaryOpType
impl Unpin for BinaryOpType
impl UnwindSafe for BinaryOpType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more