pub enum CC_p {
p,
pe,
}
Expand description
Mnemonic condition code selector (eg. JP
/ JPE
)
Variants
p
JP
, CMOVP
, SETP
pe
JPE
, CMOVPE
, SETPE
Implementations
sourceimpl CC_p
impl CC_p
sourcepub fn values(
) -> impl Iterator<Item = CC_p> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
pub fn values(
) -> impl Iterator<Item = CC_p> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
Iterates over all CC_p
enum values
Trait Implementations
sourceimpl Ord for CC_p
impl Ord for CC_p
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<CC_p> for CC_p
impl PartialOrd<CC_p> for CC_p
sourcefn partial_cmp(&self, other: &CC_p) -> Option<Ordering>
fn partial_cmp(&self, other: &CC_p) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const 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_p
impl Eq for CC_p
impl StructuralEq for CC_p
impl StructuralPartialEq for CC_p
Auto Trait Implementations
impl RefUnwindSafe for CC_p
impl Send for CC_p
impl Sync for CC_p
impl Unpin for CC_p
impl UnwindSafe for CC_p
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more