#[non_exhaustive]pub enum ElfArchitectureFormat {
Bit32 = 32,
Bit64 = 64,
}
Expand description
ELF architecture format.
This enum represents the Class field in the ELF Header.
§Examples
use std::str::FromStr;
use alpm_types::ElfArchitectureFormat;
// create ElfArchitectureFormat from str
assert_eq!(
ElfArchitectureFormat::from_str("32"),
Ok(ElfArchitectureFormat::Bit32)
);
assert_eq!(
ElfArchitectureFormat::from_str("64"),
Ok(ElfArchitectureFormat::Bit64)
);
// format as String
assert_eq!("32", format!("{}", ElfArchitectureFormat::Bit32));
assert_eq!("64", format!("{}", ElfArchitectureFormat::Bit64));
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 ElfArchitectureFormat
impl Clone for ElfArchitectureFormat
Source§fn clone(&self) -> ElfArchitectureFormat
fn clone(&self) -> ElfArchitectureFormat
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 ElfArchitectureFormat
impl Debug for ElfArchitectureFormat
Source§impl Display for ElfArchitectureFormat
impl Display for ElfArchitectureFormat
Source§impl FromStr for ElfArchitectureFormat
impl FromStr for ElfArchitectureFormat
Source§impl Ord for ElfArchitectureFormat
impl Ord for ElfArchitectureFormat
Source§fn cmp(&self, other: &ElfArchitectureFormat) -> Ordering
fn cmp(&self, other: &ElfArchitectureFormat) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ElfArchitectureFormat
impl PartialEq for ElfArchitectureFormat
Source§impl PartialOrd for ElfArchitectureFormat
impl PartialOrd for ElfArchitectureFormat
Source§impl Serialize for ElfArchitectureFormat
impl Serialize for ElfArchitectureFormat
Source§impl TryFrom<&str> for ElfArchitectureFormat
impl TryFrom<&str> for ElfArchitectureFormat
impl Copy for ElfArchitectureFormat
impl Eq for ElfArchitectureFormat
impl StructuralPartialEq for ElfArchitectureFormat
Auto Trait Implementations§
impl Freeze for ElfArchitectureFormat
impl RefUnwindSafe for ElfArchitectureFormat
impl Send for ElfArchitectureFormat
impl Sync for ElfArchitectureFormat
impl Unpin for ElfArchitectureFormat
impl UnwindSafe for ElfArchitectureFormat
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