Enum iced_x86::OpCodeTableKind
source · [−]#[non_exhaustive]
pub enum OpCodeTableKind {
Normal,
T0F,
T0F38,
T0F3A,
MAP5,
MAP6,
MAP8,
MAP9,
MAP10,
}Expand description
Opcode table
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.
Normal
Legacy/MAP0 table
T0F
0F/MAP1 table (legacy, VEX, EVEX, MVEX)
T0F38
0F38/MAP2 table (legacy, VEX, EVEX, MVEX)
T0F3A
0F3A/MAP3 table (legacy, VEX, EVEX, MVEX)
MAP5
MAP5 table (EVEX)
MAP6
MAP6 table (EVEX)
MAP8
MAP8 table (XOP)
MAP9
MAP9 table (XOP)
MAP10
MAP10 table (XOP)
Implementations
sourceimpl OpCodeTableKind
impl OpCodeTableKind
sourcepub fn values(
) -> impl Iterator<Item = OpCodeTableKind> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
pub fn values(
) -> impl Iterator<Item = OpCodeTableKind> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
Iterates over all OpCodeTableKind enum values
Trait Implementations
sourceimpl Clone for OpCodeTableKind
impl Clone for OpCodeTableKind
sourcefn clone(&self) -> OpCodeTableKind
fn clone(&self) -> OpCodeTableKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for OpCodeTableKind
impl Debug for OpCodeTableKind
sourceimpl Default for OpCodeTableKind
impl Default for OpCodeTableKind
sourceimpl<'de> Deserialize<'de> for OpCodeTableKind
impl<'de> Deserialize<'de> for OpCodeTableKind
sourcefn 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
sourceimpl Hash for OpCodeTableKind
impl Hash for OpCodeTableKind
sourceimpl Ord for OpCodeTableKind
impl Ord for OpCodeTableKind
sourcefn cmp(&self, other: &OpCodeTableKind) -> Ordering
fn cmp(&self, other: &OpCodeTableKind) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<OpCodeTableKind> for OpCodeTableKind
impl PartialEq<OpCodeTableKind> for OpCodeTableKind
sourcefn eq(&self, other: &OpCodeTableKind) -> bool
fn eq(&self, other: &OpCodeTableKind) -> bool
sourceimpl PartialOrd<OpCodeTableKind> for OpCodeTableKind
impl PartialOrd<OpCodeTableKind> for OpCodeTableKind
sourcefn partial_cmp(&self, other: &OpCodeTableKind) -> Option<Ordering>
fn partial_cmp(&self, other: &OpCodeTableKind) -> Option<Ordering>
1.0.0 · sourcefn 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 moresourceimpl Serialize for OpCodeTableKind
impl Serialize for OpCodeTableKind
sourceimpl TryFrom<usize> for OpCodeTableKind
impl TryFrom<usize> for OpCodeTableKind
impl Copy for OpCodeTableKind
impl Eq for OpCodeTableKind
impl StructuralEq for OpCodeTableKind
impl StructuralPartialEq for OpCodeTableKind
Auto Trait Implementations
impl RefUnwindSafe for OpCodeTableKind
impl Send for OpCodeTableKind
impl Sync for OpCodeTableKind
impl Unpin for OpCodeTableKind
impl UnwindSafe for OpCodeTableKind
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
