Enum iced_x86::MvexConvFn
source · #[non_exhaustive]pub enum MvexConvFn {
Show 13 variants
None = 0,
Sf32 = 1,
Sf64 = 2,
Si32 = 3,
Si64 = 4,
Uf32 = 5,
Uf64 = 6,
Ui32 = 7,
Ui64 = 8,
Df32 = 9,
Df64 = 10,
Di32 = 11,
Di64 = 12,
}
Expand description
MVEX conversion function
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.
None = 0
No conversion function
Sf32 = 1
Sf32(xxx)
Sf64 = 2
Sf64(xxx)
Si32 = 3
Si32(xxx)
Si64 = 4
Si64(xxx)
Uf32 = 5
Uf32(xxx)
Uf64 = 6
Uf64(xxx)
Ui32 = 7
Ui32(xxx)
Ui64 = 8
Ui64(xxx)
Df32 = 9
Df32(xxx)
Df64 = 10
Df64(xxx)
Di32 = 11
Di32(xxx)
Di64 = 12
Di64(xxx)
Implementations§
source§impl MvexConvFn
impl MvexConvFn
sourcepub fn values(
) -> impl Iterator<Item = MvexConvFn> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
pub fn values( ) -> impl Iterator<Item = MvexConvFn> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
Iterates over all MvexConvFn
enum values
Trait Implementations§
source§impl Clone for MvexConvFn
impl Clone for MvexConvFn
source§fn clone(&self) -> MvexConvFn
fn clone(&self) -> MvexConvFn
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 MvexConvFn
impl Debug for MvexConvFn
source§impl Default for MvexConvFn
impl Default for MvexConvFn
source§impl<'de> Deserialize<'de> for MvexConvFn
impl<'de> Deserialize<'de> for MvexConvFn
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 MvexConvFn
impl Hash for MvexConvFn
source§impl Ord for MvexConvFn
impl Ord for MvexConvFn
source§fn cmp(&self, other: &MvexConvFn) -> Ordering
fn cmp(&self, other: &MvexConvFn) -> 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 MvexConvFn
impl PartialEq for MvexConvFn
source§fn eq(&self, other: &MvexConvFn) -> bool
fn eq(&self, other: &MvexConvFn) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for MvexConvFn
impl PartialOrd for MvexConvFn
source§fn partial_cmp(&self, other: &MvexConvFn) -> Option<Ordering>
fn partial_cmp(&self, other: &MvexConvFn) -> 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 MvexConvFn
impl Serialize for MvexConvFn
source§impl TryFrom<usize> for MvexConvFn
impl TryFrom<usize> for MvexConvFn
impl Copy for MvexConvFn
impl Eq for MvexConvFn
impl StructuralEq for MvexConvFn
impl StructuralPartialEq for MvexConvFn
Auto Trait Implementations§
impl RefUnwindSafe for MvexConvFn
impl Send for MvexConvFn
impl Sync for MvexConvFn
impl Unpin for MvexConvFn
impl UnwindSafe for MvexConvFn
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