#[repr(u8)]pub enum IrCondition {
Show 15 variants
Equal = 0,
NotEqual = 1,
Less = 2,
NotLess = 3,
LessEqual = 4,
NotLessEqual = 5,
Greater = 6,
NotGreater = 7,
GreaterEqual = 8,
NotGreaterEqual = 9,
UnsignedLess = 10,
UnsignedLessEqual = 11,
UnsignedGreater = 12,
UnsignedGreaterEqual = 13,
Count = 14,
}Variants§
Equal = 0
NotEqual = 1
Less = 2
NotLess = 3
LessEqual = 4
NotLessEqual = 5
Greater = 6
NotGreater = 7
GreaterEqual = 8
NotGreaterEqual = 9
UnsignedLess = 10
UnsignedLessEqual = 11
UnsignedGreater = 12
UnsignedGreaterEqual = 13
Count = 14
Implementations§
Source§impl IrCondition
impl IrCondition
pub const Equal: Self = Self::Equal
pub const NotEqual: Self = Self::NotEqual
pub const Less: Self = Self::Less
pub const NotLess: Self = Self::NotLess
pub const LessEqual: Self = Self::LessEqual
pub const NotLessEqual: Self = Self::NotLessEqual
pub const Greater: Self = Self::Greater
pub const NotGreater: Self = Self::NotGreater
pub const GreaterEqual: Self = Self::GreaterEqual
pub const NotGreaterEqual: Self = Self::NotGreaterEqual
pub const UnsignedLess: Self = Self::UnsignedLess
pub const UnsignedLessEqual: Self = Self::UnsignedLessEqual
pub const UnsignedGreater: Self = Self::UnsignedGreater
pub const UnsignedGreaterEqual: Self = Self::UnsignedGreaterEqual
pub const Count: Self = Self::Count
Trait Implementations§
Source§impl Clone for IrCondition
impl Clone for IrCondition
Source§fn clone(&self) -> IrCondition
fn clone(&self) -> IrCondition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IrCondition
Source§impl Debug for IrCondition
impl Debug for IrCondition
impl Eq for IrCondition
Source§impl Hash for IrCondition
impl Hash for IrCondition
Source§impl PartialEq for IrCondition
impl PartialEq for IrCondition
Source§fn eq(&self, other: &IrCondition) -> bool
fn eq(&self, other: &IrCondition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IrCondition
Auto Trait Implementations§
impl Freeze for IrCondition
impl RefUnwindSafe for IrCondition
impl Send for IrCondition
impl Sync for IrCondition
impl Unpin for IrCondition
impl UnsafeUnpin for IrCondition
impl UnwindSafe for IrCondition
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