pub enum ComparisonOpKind {
Equal,
NotEqual,
Less,
LessEqual,
Greater,
GreaterEqual,
Is,
IsNot,
In,
NotIn,
}Variants§
Trait Implementations§
Source§impl Clone for ComparisonOpKind
impl Clone for ComparisonOpKind
Source§fn clone(&self) -> ComparisonOpKind
fn clone(&self) -> ComparisonOpKind
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 moreimpl Copy for ComparisonOpKind
Source§impl Debug for ComparisonOpKind
impl Debug for ComparisonOpKind
Source§impl Display for ComparisonOpKind
impl Display for ComparisonOpKind
impl Eq for ComparisonOpKind
Source§impl PartialEq for ComparisonOpKind
impl PartialEq for ComparisonOpKind
Source§fn eq(&self, other: &ComparisonOpKind) -> bool
fn eq(&self, other: &ComparisonOpKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ComparisonOpKind
Auto Trait Implementations§
impl Freeze for ComparisonOpKind
impl RefUnwindSafe for ComparisonOpKind
impl Send for ComparisonOpKind
impl Sync for ComparisonOpKind
impl Unpin for ComparisonOpKind
impl UnsafeUnpin for ComparisonOpKind
impl UnwindSafe for ComparisonOpKind
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