pub enum ResultCondition {
Carry,
Overflow,
Signed,
PositiveOrZero,
Zero,
NonZero,
}Variants§
Implementations§
Source§impl ResultCondition
impl ResultCondition
pub const fn invert(self) -> Self
pub const fn x86_condition(self) -> CondCode
Trait Implementations§
Source§impl Clone for ResultCondition
impl Clone for ResultCondition
Source§fn clone(&self) -> ResultCondition
fn clone(&self) -> ResultCondition
Returns a duplicate 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 ResultCondition
impl Debug for ResultCondition
Source§impl Hash for ResultCondition
impl Hash for ResultCondition
Source§impl Ord for ResultCondition
impl Ord for ResultCondition
Source§fn cmp(&self, other: &ResultCondition) -> Ordering
fn cmp(&self, other: &ResultCondition) -> 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 ResultCondition
impl PartialEq for ResultCondition
Source§impl PartialOrd for ResultCondition
impl PartialOrd for ResultCondition
impl Copy for ResultCondition
impl Eq for ResultCondition
impl StructuralPartialEq for ResultCondition
Auto Trait Implementations§
impl Freeze for ResultCondition
impl RefUnwindSafe for ResultCondition
impl Send for ResultCondition
impl Sync for ResultCondition
impl Unpin for ResultCondition
impl UnsafeUnpin for ResultCondition
impl UnwindSafe for ResultCondition
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