#[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.
I386
I586
I686
Trait Implementations
sourceimpl Clone for X86_32Architecture
impl Clone for X86_32Architecture
sourcefn clone(&self) -> X86_32Architecture
fn clone(&self) -> X86_32Architecture
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 more
sourceimpl Debug for X86_32Architecture
impl Debug for X86_32Architecture
sourceimpl Display for X86_32Architecture
impl Display for X86_32Architecture
sourceimpl FromStr for X86_32Architecture
impl FromStr for X86_32Architecture
sourceimpl Hash for X86_32Architecture
impl Hash for X86_32Architecture
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more