pub enum RelationOp {
LessThan,
LessThanEq,
GreaterThan,
GreaterThanEq,
Equals,
NotEquals,
In,
}
Variants§
Trait Implementations§
Source§impl Clone for RelationOp
impl Clone for RelationOp
Source§fn clone(&self) -> RelationOp
fn clone(&self) -> RelationOp
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 RelationOp
impl Debug for RelationOp
Source§impl PartialEq for RelationOp
impl PartialEq for RelationOp
impl Copy for RelationOp
impl Eq for RelationOp
impl StructuralPartialEq for RelationOp
Auto Trait Implementations§
impl Freeze for RelationOp
impl RefUnwindSafe for RelationOp
impl Send for RelationOp
impl Sync for RelationOp
impl Unpin for RelationOp
impl UnwindSafe for RelationOp
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