pub enum CmpiPred {
Eq,
Ne,
Slt,
Sle,
Sgt,
Sge,
Ult,
Ule,
Ugt,
Uge,
}Expand description
Arithmetic comparison predicates for arith.cmpi.
Variants§
Eq
Equal
Ne
Not equal
Slt
Signed less than
Sle
Signed less than or equal
Sgt
Signed greater than
Sge
Signed greater than or equal
Ult
Unsigned less than
Ule
Unsigned less than or equal
Ugt
Unsigned greater than
Uge
Unsigned greater than or equal
Trait Implementations§
impl Copy for CmpiPred
impl Eq for CmpiPred
impl StructuralPartialEq for CmpiPred
Auto Trait Implementations§
impl Freeze for CmpiPred
impl RefUnwindSafe for CmpiPred
impl Send for CmpiPred
impl Sync for CmpiPred
impl Unpin for CmpiPred
impl UnsafeUnpin for CmpiPred
impl UnwindSafe for CmpiPred
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