pub enum ConditionCode {
Unconditional,
NonZero,
Zero,
NoCarry,
Carry,
}Expand description
Conditional for conditional jump/conditional ret.
Variants§
Trait Implementations§
Source§impl Clone for ConditionCode
impl Clone for ConditionCode
Source§fn clone(&self) -> ConditionCode
fn clone(&self) -> ConditionCode
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 ConditionCode
impl Debug for ConditionCode
Source§impl Display for ConditionCode
impl Display for ConditionCode
Source§impl Ord for ConditionCode
impl Ord for ConditionCode
Source§fn cmp(&self, other: &ConditionCode) -> Ordering
fn cmp(&self, other: &ConditionCode) -> 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 ConditionCode
impl PartialEq for ConditionCode
Source§impl PartialOrd for ConditionCode
impl PartialOrd for ConditionCode
impl Copy for ConditionCode
impl Eq for ConditionCode
impl StructuralPartialEq for ConditionCode
Auto Trait Implementations§
impl Freeze for ConditionCode
impl RefUnwindSafe for ConditionCode
impl Send for ConditionCode
impl Sync for ConditionCode
impl Unpin for ConditionCode
impl UnwindSafe for ConditionCode
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