pub enum PortableComparisonOp {
Equal,
NotEqual,
GreaterThan,
GreaterThanOrEqual,
LessThan,
LessThanOrEqual,
}Variants§
Trait Implementations§
Source§impl Clone for PortableComparisonOp
impl Clone for PortableComparisonOp
Source§fn clone(&self) -> PortableComparisonOp
fn clone(&self) -> PortableComparisonOp
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 PortableComparisonOp
impl Debug for PortableComparisonOp
Source§impl<'de> Deserialize<'de> for PortableComparisonOp
impl<'de> Deserialize<'de> for PortableComparisonOp
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 PortableComparisonOp
Source§impl PartialEq for PortableComparisonOp
impl PartialEq for PortableComparisonOp
Source§impl Serialize for PortableComparisonOp
impl Serialize for PortableComparisonOp
impl StructuralPartialEq for PortableComparisonOp
Auto Trait Implementations§
impl Freeze for PortableComparisonOp
impl RefUnwindSafe for PortableComparisonOp
impl Send for PortableComparisonOp
impl Sync for PortableComparisonOp
impl Unpin for PortableComparisonOp
impl UnsafeUnpin for PortableComparisonOp
impl UnwindSafe for PortableComparisonOp
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