#[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.
Mips64
Mips64el
Mipsisa64r6
Mipsisa64r6el
Trait Implementations
sourceimpl Clone for Mips64Architecture
impl Clone for Mips64Architecture
sourcefn clone(&self) -> Mips64Architecture
fn clone(&self) -> Mips64Architecture
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 Mips64Architecture
impl Debug for Mips64Architecture
sourceimpl Display for Mips64Architecture
impl Display for Mips64Architecture
sourceimpl FromStr for Mips64Architecture
impl FromStr for Mips64Architecture
sourceimpl Hash for Mips64Architecture
impl Hash for Mips64Architecture
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub 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