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