#[repr(C)]pub enum CmpTypes {
CMP_EQ = 0,
CMP_GT = 1,
CMP_GE = 2,
CMP_LT = 3,
CMP_LE = 4,
CMP_NE = 5,
}
Expand description
comparison types
Variants§
CMP_EQ = 0
src1 is equal to src2.
CMP_GT = 1
src1 is greater than src2.
CMP_GE = 2
src1 is greater than or equal to src2.
CMP_LT = 3
src1 is less than src2.
CMP_LE = 4
src1 is less than or equal to src2.
CMP_NE = 5
src1 is unequal to src2.
Trait Implementations§
source§impl PartialEq for CmpTypes
impl PartialEq for CmpTypes
impl Copy for CmpTypes
impl Eq for CmpTypes
impl StructuralEq for CmpTypes
impl StructuralPartialEq for CmpTypes
Auto Trait Implementations§
impl RefUnwindSafe for CmpTypes
impl Send for CmpTypes
impl Sync for CmpTypes
impl Unpin for CmpTypes
impl UnwindSafe for CmpTypes
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