pub enum CC_e {
e = 0,
z = 1,
}
Expand description
Mnemonic condition code selector (eg. JE
/ JZ
)
Variants§
Implementations§
source§impl CC_e
impl CC_e
sourcepub fn values(
) -> impl Iterator<Item = CC_e> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
pub fn values( ) -> impl Iterator<Item = CC_e> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
Iterates over all CC_e
enum values
Trait Implementations§
source§impl<'de> Deserialize<'de> for CC_e
impl<'de> Deserialize<'de> for CC_e
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Ord for CC_e
impl Ord for CC_e
source§impl PartialEq for CC_e
impl PartialEq for CC_e
source§impl PartialOrd for CC_e
impl PartialOrd for CC_e
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for CC_e
impl Eq for CC_e
impl StructuralEq for CC_e
impl StructuralPartialEq for CC_e
Auto Trait Implementations§
impl RefUnwindSafe for CC_e
impl Send for CC_e
impl Sync for CC_e
impl Unpin for CC_e
impl UnwindSafe for CC_e
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