Enum iced_x86::RepPrefixKind
source · #[non_exhaustive]pub enum RepPrefixKind {
None = 0,
Repe = 1,
Repne = 2,
}
Expand description
REP
/REPE
/REPNE
prefix
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
source§impl RepPrefixKind
impl RepPrefixKind
sourcepub fn values(
) -> impl Iterator<Item = RepPrefixKind> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
pub fn values( ) -> impl Iterator<Item = RepPrefixKind> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
Iterates over all RepPrefixKind
enum values
Trait Implementations§
source§impl Clone for RepPrefixKind
impl Clone for RepPrefixKind
source§fn clone(&self) -> RepPrefixKind
fn clone(&self) -> RepPrefixKind
Returns a copy 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 RepPrefixKind
impl Debug for RepPrefixKind
source§impl Default for RepPrefixKind
impl Default for RepPrefixKind
source§impl<'de> Deserialize<'de> for RepPrefixKind
impl<'de> Deserialize<'de> for RepPrefixKind
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 Hash for RepPrefixKind
impl Hash for RepPrefixKind
source§impl Ord for RepPrefixKind
impl Ord for RepPrefixKind
source§fn cmp(&self, other: &RepPrefixKind) -> Ordering
fn cmp(&self, other: &RepPrefixKind) -> 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 RepPrefixKind
impl PartialEq for RepPrefixKind
source§fn eq(&self, other: &RepPrefixKind) -> bool
fn eq(&self, other: &RepPrefixKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for RepPrefixKind
impl PartialOrd for RepPrefixKind
source§fn partial_cmp(&self, other: &RepPrefixKind) -> Option<Ordering>
fn partial_cmp(&self, other: &RepPrefixKind) -> Option<Ordering>
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 moresource§impl Serialize for RepPrefixKind
impl Serialize for RepPrefixKind
source§impl TryFrom<usize> for RepPrefixKind
impl TryFrom<usize> for RepPrefixKind
impl Copy for RepPrefixKind
impl Eq for RepPrefixKind
impl StructuralEq for RepPrefixKind
impl StructuralPartialEq for RepPrefixKind
Auto Trait Implementations§
impl RefUnwindSafe for RepPrefixKind
impl Send for RepPrefixKind
impl Sync for RepPrefixKind
impl Unpin for RepPrefixKind
impl UnwindSafe for RepPrefixKind
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