#[non_exhaustive]pub enum Mips64Architecture {
Mips64,
Mips64el,
Mipsisa64r6,
Mipsisa64r6el,
}
Expand description
An enum for all 64-bit MIPS architectures (not just “MIPS64”).
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 Mips64Architecture
impl Clone for Mips64Architecture
source§fn clone(&self) -> Mips64Architecture
fn clone(&self) -> Mips64Architecture
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 Mips64Architecture
impl Debug for Mips64Architecture
source§impl Display for Mips64Architecture
impl Display for Mips64Architecture
source§impl FromStr for Mips64Architecture
impl FromStr for Mips64Architecture
source§impl Hash for Mips64Architecture
impl Hash for Mips64Architecture
source§impl PartialEq<Mips64Architecture> for Mips64Architecture
impl PartialEq<Mips64Architecture> for Mips64Architecture
source§fn eq(&self, other: &Mips64Architecture) -> bool
fn eq(&self, other: &Mips64Architecture) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for Mips64Architecture
impl Eq for Mips64Architecture
impl StructuralEq for Mips64Architecture
impl StructuralPartialEq for Mips64Architecture
Auto Trait Implementations§
impl RefUnwindSafe for Mips64Architecture
impl Send for Mips64Architecture
impl Sync for Mips64Architecture
impl Unpin for Mips64Architecture
impl UnwindSafe for Mips64Architecture
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