#[repr(u8)]pub enum RelationalCondition {
Equal = 4,
NotEqual = 5,
Above = 7,
AboveOrEqual = 3,
Below = 2,
BelowOrEqual = 6,
GreaterThan = 15,
GreaterThanOrEqual = 13,
LessThan = 12,
LessThanOrEqual = 14,
}
Variants§
Equal = 4
NotEqual = 5
Above = 7
AboveOrEqual = 3
Below = 2
BelowOrEqual = 6
GreaterThan = 15
GreaterThanOrEqual = 13
LessThan = 12
LessThanOrEqual = 14
Implementations§
Source§impl RelationalCondition
impl RelationalCondition
pub fn x86_condition(self) -> Condition
Trait Implementations§
Source§impl Clone for RelationalCondition
impl Clone for RelationalCondition
Source§fn clone(&self) -> RelationalCondition
fn clone(&self) -> RelationalCondition
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 RelationalCondition
impl Debug for RelationalCondition
Source§impl Hash for RelationalCondition
impl Hash for RelationalCondition
Source§impl Ord for RelationalCondition
impl Ord for RelationalCondition
Source§fn cmp(&self, other: &RelationalCondition) -> Ordering
fn cmp(&self, other: &RelationalCondition) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RelationalCondition
impl PartialEq for RelationalCondition
Source§impl PartialOrd for RelationalCondition
impl PartialOrd for RelationalCondition
impl Copy for RelationalCondition
impl Eq for RelationalCondition
impl StructuralPartialEq for RelationalCondition
Auto Trait Implementations§
impl Freeze for RelationalCondition
impl RefUnwindSafe for RelationalCondition
impl Send for RelationalCondition
impl Sync for RelationalCondition
impl Unpin for RelationalCondition
impl UnwindSafe for RelationalCondition
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