#[non_exhaustive]pub enum X86_32Architecture {
I386,
I586,
I686,
}
Expand description
An enum for all 32-bit x86 architectures.
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_32Architecture
impl Clone for X86_32Architecture
source§fn clone(&self) -> X86_32Architecture
fn clone(&self) -> X86_32Architecture
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 X86_32Architecture
impl Debug for X86_32Architecture
source§impl Display for X86_32Architecture
impl Display for X86_32Architecture
source§impl FromStr for X86_32Architecture
impl FromStr for X86_32Architecture
source§impl Hash for X86_32Architecture
impl Hash for X86_32Architecture
source§impl PartialEq<X86_32Architecture> for X86_32Architecture
impl PartialEq<X86_32Architecture> for X86_32Architecture
source§fn eq(&self, other: &X86_32Architecture) -> bool
fn eq(&self, other: &X86_32Architecture) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for X86_32Architecture
impl Eq for X86_32Architecture
impl StructuralEq for X86_32Architecture
impl StructuralPartialEq for X86_32Architecture
Auto Trait Implementations§
impl RefUnwindSafe for X86_32Architecture
impl Send for X86_32Architecture
impl Sync for X86_32Architecture
impl Unpin for X86_32Architecture
impl UnwindSafe for X86_32Architecture
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