pub enum PortableBinaryOp {
Show 18 variants
Add,
Sub,
Mul,
Div,
Mod,
Gt,
Lt,
Gte,
Lte,
Eq,
Ne,
And,
Or,
Xor,
BitAnd,
BitOr,
Shl,
Shr,
}Variants§
Trait Implementations§
Source§impl Clone for PortableBinaryOp
impl Clone for PortableBinaryOp
Source§fn clone(&self) -> PortableBinaryOp
fn clone(&self) -> PortableBinaryOp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PortableBinaryOp
impl Debug for PortableBinaryOp
Source§impl<'de> Deserialize<'de> for PortableBinaryOp
impl<'de> Deserialize<'de> for PortableBinaryOp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PortableBinaryOp
Source§impl PartialEq for PortableBinaryOp
impl PartialEq for PortableBinaryOp
Source§impl Serialize for PortableBinaryOp
impl Serialize for PortableBinaryOp
impl StructuralPartialEq for PortableBinaryOp
Auto Trait Implementations§
impl Freeze for PortableBinaryOp
impl RefUnwindSafe for PortableBinaryOp
impl Send for PortableBinaryOp
impl Sync for PortableBinaryOp
impl Unpin for PortableBinaryOp
impl UnsafeUnpin for PortableBinaryOp
impl UnwindSafe for PortableBinaryOp
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