pub enum RelationalOp {
Eq,
Neq,
Lt,
Leq,
Gt,
Geq,
}
Variants§
Trait Implementations§
Source§impl Clone for RelationalOp
impl Clone for RelationalOp
Source§fn clone(&self) -> RelationalOp
fn clone(&self) -> RelationalOp
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 RelationalOp
impl Debug for RelationalOp
Source§impl Display for RelationalOp
impl Display for RelationalOp
Source§impl Hash for RelationalOp
impl Hash for RelationalOp
Source§impl PartialEq for RelationalOp
impl PartialEq for RelationalOp
impl Copy for RelationalOp
impl Eq for RelationalOp
impl StructuralPartialEq for RelationalOp
Auto Trait Implementations§
impl Freeze for RelationalOp
impl RefUnwindSafe for RelationalOp
impl Send for RelationalOp
impl Sync for RelationalOp
impl Unpin for RelationalOp
impl UnwindSafe for RelationalOp
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