Enum BtBinaryOp
pub enum BtBinaryOp {
Show 16 variants
Add,
Subtract,
Multiply,
Divide,
Remainder,
BitwiseAnd,
BitwiseXor,
BitwiseOr,
LeftShift,
RightShift,
EqualTo,
NotEqualTo,
LessThan,
GreaterThan,
LessThanOrEqualTo,
GreaterThanOrEqualTo,
}Expand description
Binary operator.
Variants§
Add
Subtract
Multiply
Divide
Remainder
BitwiseAnd
BitwiseXor
BitwiseOr
LeftShift
RightShift
EqualTo
NotEqualTo
LessThan
GreaterThan
LessThanOrEqualTo
GreaterThanOrEqualTo
Trait Implementations§
§impl Clone for BtBinaryOp
impl Clone for BtBinaryOp
§fn clone(&self) -> BtBinaryOp
fn clone(&self) -> BtBinaryOp
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 more§impl Debug for BtBinaryOp
impl Debug for BtBinaryOp
§impl Display for BtBinaryOp
impl Display for BtBinaryOp
§impl PartialEq for BtBinaryOp
impl PartialEq for BtBinaryOp
impl Copy for BtBinaryOp
impl Eq for BtBinaryOp
impl StructuralPartialEq for BtBinaryOp
Auto Trait Implementations§
impl Freeze for BtBinaryOp
impl RefUnwindSafe for BtBinaryOp
impl Send for BtBinaryOp
impl Sync for BtBinaryOp
impl Unpin for BtBinaryOp
impl UnwindSafe for BtBinaryOp
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