Enum iced_x86::PrefixKind
source · #[non_exhaustive]
pub enum PrefixKind {
Show 18 variants
ES,
CS,
SS,
DS,
FS,
GS,
Lock,
Rep,
Repe,
Repne,
OperandSize,
AddressSize,
HintNotTaken,
HintTaken,
Bnd,
Notrack,
Xacquire,
Xrelease,
}
Expand description
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.
ES
CS
SS
DS
FS
GS
Lock
Rep
Repe
Repne
OperandSize
AddressSize
HintNotTaken
HintTaken
Bnd
Notrack
Xacquire
Xrelease
Implementations§
source§impl PrefixKind
impl PrefixKind
sourcepub fn values(
) -> impl Iterator<Item = PrefixKind> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
pub fn values( ) -> impl Iterator<Item = PrefixKind> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
Iterates over all PrefixKind
enum values
Trait Implementations§
source§impl Clone for PrefixKind
impl Clone for PrefixKind
source§fn clone(&self) -> PrefixKind
fn clone(&self) -> PrefixKind
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PrefixKind
impl Debug for PrefixKind
source§impl Default for PrefixKind
impl Default for PrefixKind
source§impl Hash for PrefixKind
impl Hash for PrefixKind
source§impl Ord for PrefixKind
impl Ord for PrefixKind
source§impl PartialEq<PrefixKind> for PrefixKind
impl PartialEq<PrefixKind> for PrefixKind
source§impl PartialOrd<PrefixKind> for PrefixKind
impl PartialOrd<PrefixKind> for PrefixKind
source§impl TryFrom<usize> for PrefixKind
impl TryFrom<usize> for PrefixKind
impl Copy for PrefixKind
impl Eq for PrefixKind
impl StructuralEq for PrefixKind
impl StructuralPartialEq for PrefixKind
Auto Trait Implementations§
impl RefUnwindSafe for PrefixKind
impl Send for PrefixKind
impl Sync for PrefixKind
impl Unpin for PrefixKind
impl UnwindSafe for PrefixKind
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
const: unstable§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more