pub enum CondCode {
Eq,
Ne,
Lt,
Le,
Gt,
Ge,
Ult,
Ule,
Ugt,
Uge,
}Expand description
Comparison condition code.
Variants§
Eq
Ne
Lt
Le
Gt
Ge
Ult
Unsigned less than.
Ule
Unsigned less or equal.
Ugt
Unsigned greater than.
Uge
Unsigned greater or equal.
Trait Implementations§
impl Copy for CondCode
impl Eq for CondCode
impl StructuralPartialEq for CondCode
Auto Trait Implementations§
impl Freeze for CondCode
impl RefUnwindSafe for CondCode
impl Send for CondCode
impl Sync for CondCode
impl Unpin for CondCode
impl UnsafeUnpin for CondCode
impl UnwindSafe for CondCode
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