Enum symbolic_common::Arch
source · [−]#[repr(u32)]
#[non_exhaustive]
pub enum Arch {
Show 29 variants
Unknown,
X86,
X86Unknown,
Amd64,
Amd64h,
Amd64Unknown,
Arm,
ArmV5,
ArmV6,
ArmV6m,
ArmV7,
ArmV7f,
ArmV7s,
ArmV7k,
ArmV7m,
ArmV7em,
ArmUnknown,
Arm64,
Arm64V8,
Arm64e,
Arm64Unknown,
Ppc,
Ppc64,
Mips,
Mips64,
Arm64_32,
Arm64_32V8,
Arm64_32Unknown,
Wasm32,
}
Expand description
An enumeration of CPU architectures and variants.
The architectues are grouped into families, which can be retrieved by cpu_family
. There are
*Unknown
variants for each architecture to maintain forward-compatibility. This allows to
support architectures where the family is known but the subtype is not.
Each architecture has a canonical name, returned by Arch::name
. Likewise, architectures can
be parsed from their string names. In addition to that, in some cases aliases are supported. For
instance, "x86"
is aliased as "i386"
.
This enumeration is represented as u32
for C-bindings and lowlevel APIs. The values are
grouped by CPU family for forward compatibility.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Unknown
X86
X86Unknown
Amd64
Amd64h
Amd64Unknown
Arm
ArmV5
ArmV6
ArmV6m
ArmV7
ArmV7f
ArmV7s
ArmV7k
ArmV7m
ArmV7em
ArmUnknown
Arm64
Arm64V8
Arm64e
Arm64Unknown
Ppc
Ppc64
Mips
Mips64
Arm64_32
Arm64_32V8
Arm64_32Unknown
Wasm32
Implementations
sourceimpl Arch
impl Arch
sourcepub fn from_u32(val: u32) -> Arch
pub fn from_u32(val: u32) -> Arch
Creates an Arch
from its u32
representation.
Returns Arch::Unknown
for all unknown values.
Examples
use symbolic_common::Arch;
// Will print "X86"
println!("{:?}", Arch::from_u32(101));
sourcepub fn cpu_family(self) -> CpuFamily
pub fn cpu_family(self) -> CpuFamily
Returns the CPU family of the CPU architecture.
Examples
use symbolic_common::Arch;
// Will print "Intel32"
println!("{:?}", Arch::X86.cpu_family());
sourcepub fn name(self) -> &'static str
pub fn name(self) -> &'static str
Returns the canonical name of the CPU architecture.
This follows the Apple conventions for naming architectures. For instance, Intel 32-bit
architectures are canonically named "x86"
, even though "i386"
would also be a valid
name.
For architectures with variants or subtypes, that subtype is encoded into the name. For instance the ARM v7-M architecture is named with a full `“armv7m”.
Examples
use symbolic_common::Arch;
// Will print "x86"
println!("{}", Arch::X86.name());
sourcepub fn well_known(self) -> bool
pub fn well_known(self) -> bool
Returns whether this architecture is well-known.
This is trivially true
for all architectures other than the *Unknown
variants.
Examples
use symbolic_common::Arch;
assert!(Arch::X86.well_known());
assert!(!Arch::X86Unknown.well_known());
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Arch
impl<'de> Deserialize<'de> for Arch
sourcefn 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
sourceimpl FromStr for Arch
impl FromStr for Arch
type Err = UnknownArchError
type Err = UnknownArchError
The associated error which can be returned from parsing.
sourceimpl Ord for Arch
impl Ord for Arch
sourceimpl PartialOrd<Arch> for Arch
impl PartialOrd<Arch> for Arch
sourcefn partial_cmp(&self, other: &Arch) -> Option<Ordering>
fn partial_cmp(&self, other: &Arch) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for Arch
impl Eq for Arch
impl StructuralEq for Arch
impl StructuralPartialEq for Arch
Auto Trait Implementations
impl RefUnwindSafe for Arch
impl Send for Arch
impl Sync for Arch
impl Unpin for Arch
impl UnwindSafe for Arch
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more