pub enum RowCompareType {
ROWCOMPARE_LT = 1,
ROWCOMPARE_LE = 2,
ROWCOMPARE_EQ = 3,
ROWCOMPARE_GE = 4,
ROWCOMPARE_GT = 5,
ROWCOMPARE_NE = 6,
}Variants§
ROWCOMPARE_LT = 1
ROWCOMPARE_LE = 2
ROWCOMPARE_EQ = 3
ROWCOMPARE_GE = 4
ROWCOMPARE_GT = 5
ROWCOMPARE_NE = 6
Trait Implementations§
Source§impl Clone for RowCompareType
impl Clone for RowCompareType
Source§fn clone(&self) -> RowCompareType
fn clone(&self) -> RowCompareType
Returns a copy 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 RowCompareType
impl Debug for RowCompareType
Source§impl<'de> Deserialize<'de> for RowCompareType
impl<'de> Deserialize<'de> for RowCompareType
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
Source§impl PartialEq for RowCompareType
impl PartialEq for RowCompareType
impl Copy for RowCompareType
impl Eq for RowCompareType
impl StructuralPartialEq for RowCompareType
Auto Trait Implementations§
impl Freeze for RowCompareType
impl RefUnwindSafe for RowCompareType
impl Send for RowCompareType
impl Sync for RowCompareType
impl Unpin for RowCompareType
impl UnwindSafe for RowCompareType
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