pub enum CC_ae {
ae = 0,
nb = 1,
nc = 2,
}
Expand description
Mnemonic condition code selector (eg. JAE
/ JNB
/ JNC
)
Variants§
Implementations§
source§impl CC_ae
impl CC_ae
sourcepub fn values(
) -> impl Iterator<Item = CC_ae> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
pub fn values( ) -> impl Iterator<Item = CC_ae> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
Iterates over all CC_ae
enum values
Trait Implementations§
source§impl<'de> Deserialize<'de> for CC_ae
impl<'de> Deserialize<'de> for CC_ae
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_ae
impl Ord for CC_ae
source§impl PartialEq for CC_ae
impl PartialEq for CC_ae
source§impl PartialOrd for CC_ae
impl PartialOrd for CC_ae
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_ae
impl Eq for CC_ae
impl StructuralEq for CC_ae
impl StructuralPartialEq for CC_ae
Auto Trait Implementations§
impl RefUnwindSafe for CC_ae
impl Send for CC_ae
impl Sync for CC_ae
impl Unpin for CC_ae
impl UnwindSafe for CC_ae
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