#[non_exhaustive]pub enum X86_64Level {
V2,
V3,
V4,
}Expand description
x86-64 microarchitecture levels (the System V psABI levels).
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.
Trait Implementations§
Source§impl Clone for X86_64Level
impl Clone for X86_64Level
Source§fn clone(&self) -> X86_64Level
fn clone(&self) -> X86_64Level
Returns a duplicate 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 X86_64Level
impl Debug for X86_64Level
Source§impl Hash for X86_64Level
impl Hash for X86_64Level
Source§impl Ord for X86_64Level
impl Ord for X86_64Level
Source§fn cmp(&self, other: &X86_64Level) -> Ordering
fn cmp(&self, other: &X86_64Level) -> 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 X86_64Level
impl PartialEq for X86_64Level
Source§impl PartialOrd for X86_64Level
impl PartialOrd for X86_64Level
impl Copy for X86_64Level
impl Eq for X86_64Level
impl StructuralPartialEq for X86_64Level
Auto Trait Implementations§
impl Freeze for X86_64Level
impl RefUnwindSafe for X86_64Level
impl Send for X86_64Level
impl Sync for X86_64Level
impl Unpin for X86_64Level
impl UnsafeUnpin for X86_64Level
impl UnwindSafe for X86_64Level
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