#[non_exhaustive]pub enum Architecture {
Show 15 variants
Aarch64,
Any,
Arm,
Armv6h,
Armv7h,
I386,
I486,
I686,
Pentium4,
Riscv32,
Riscv64,
X86_64,
X86_64V2,
X86_64V3,
X86_64V4,
}
Expand description
CPU architecture
Members of the Architecture enum can be created from &str
.
§Examples
use std::str::FromStr;
use alpm_types::Architecture;
// create Architecture from str
assert_eq!(Architecture::from_str("aarch64"), Ok(Architecture::Aarch64));
// format as String
assert_eq!("aarch64", format!("{}", Architecture::Aarch64));
assert_eq!("any", format!("{}", Architecture::Any));
assert_eq!("arm", format!("{}", Architecture::Arm));
assert_eq!("armv6h", format!("{}", Architecture::Armv6h));
assert_eq!("armv7h", format!("{}", Architecture::Armv7h));
assert_eq!("i386", format!("{}", Architecture::I386));
assert_eq!("i486", format!("{}", Architecture::I486));
assert_eq!("i686", format!("{}", Architecture::I686));
assert_eq!("pentium4", format!("{}", Architecture::Pentium4));
assert_eq!("riscv32", format!("{}", Architecture::Riscv32));
assert_eq!("riscv64", format!("{}", Architecture::Riscv64));
assert_eq!("x86_64", format!("{}", Architecture::X86_64));
assert_eq!("x86_64_v2", format!("{}", Architecture::X86_64V2));
assert_eq!("x86_64_v3", format!("{}", Architecture::X86_64V3));
assert_eq!("x86_64_v4", format!("{}", Architecture::X86_64V4));
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.
Aarch64
ARMv8 64-bit
Any
Any architecture
Arm
ARM
Armv6h
ARMv6 hard-float
Armv7h
ARMv7 hard-float
I386
Intel 386
I486
Intel 486
I686
Intel 686
Pentium4
Intel Pentium 4
Riscv32
RISC-V 32-bit
Riscv64
RISC-V 64-bit
X86_64
Intel x86_64
X86_64V2
Intel x86_64 version 2
X86_64V3
Intel x86_64 version 3
X86_64V4
Intel x86_64 version 4
Trait Implementations§
Source§impl Clone for Architecture
impl Clone for Architecture
Source§fn clone(&self) -> Architecture
fn clone(&self) -> Architecture
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 Architecture
impl Debug for Architecture
Source§impl<'de> Deserialize<'de> for Architecture
impl<'de> Deserialize<'de> for Architecture
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for Architecture
impl Display for Architecture
Source§impl FromStr for Architecture
impl FromStr for Architecture
Source§impl Hash for Architecture
impl Hash for Architecture
Source§impl Ord for Architecture
impl Ord for Architecture
Source§fn cmp(&self, other: &Architecture) -> Ordering
fn cmp(&self, other: &Architecture) -> 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 Architecture
impl PartialEq for Architecture
Source§impl PartialOrd for Architecture
impl PartialOrd for Architecture
Source§impl Serialize for Architecture
impl Serialize for Architecture
Source§impl TryFrom<&str> for Architecture
impl TryFrom<&str> for Architecture
impl Copy for Architecture
impl Eq for Architecture
impl StructuralPartialEq for Architecture
Auto Trait Implementations§
impl Freeze for Architecture
impl RefUnwindSafe for Architecture
impl Send for Architecture
impl Sync for Architecture
impl Unpin for Architecture
impl UnwindSafe for Architecture
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