[−][src]Enum symbolic_common::Arch
An enum of CPU architectures and variants.
Variants
Unknown
X86
X86Unknown
Amd64
Amd64h
Amd64Unknown
Arm
ArmV5
ArmV6
ArmV6m
ArmV7
ArmV7f
ArmV7s
ArmV7k
ArmV7m
ArmV7em
ArmUnknown
Arm64
Arm64V8
Arm64e
Arm64Unknown
Ppc
Ppc64
Methods
impl Arch
[src]
pub fn from_u32(val: u32) -> Arch
[src]
Creates an arch from the u32 it represents.
pub fn cpu_family(self) -> CpuFamily
[src]
Returns the CPU family.
pub fn name(self) -> &'static str
[src]
Returns the name of the arch.
pub fn pointer_size(self) -> Option<usize>
[src]
Returns the native pointer size.
pub fn instruction_alignment(self) -> Option<u64>
[src]
Returns instruction alignment if fixed.
pub fn ip_register_name(self) -> Option<&'static str>
[src]
The name of the IP register if known.
pub fn well_known(self) -> bool
[src]
Returns whether this architecture is well-known.
pub fn register_name(self, register: u16) -> Option<&'static str>
[src]
Returns the name of a register in a given architecture.
Trait Implementations
impl Clone for Arch
[src]
fn clone(&self) -> Arch
[src]
default fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Ord for Arch
[src]
fn cmp(&self, other: &Arch) -> Ordering
[src]
default fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
default fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
default fn clamp(self, min: Self, max: Self) -> Self
[src]
clamp
)Restrict a value to a certain interval. Read more
impl Eq for Arch
[src]
impl PartialOrd<Arch> for Arch
[src]
fn partial_cmp(&self, other: &Arch) -> Option<Ordering>
[src]
#[must_use]
default fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]
default fn le(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
#[must_use]
default fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
#[must_use]
default fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Copy for Arch
[src]
impl PartialEq<Arch> for Arch
[src]
fn eq(&self, other: &Arch) -> bool
[src]
#[must_use]
default fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Default for Arch
[src]
impl Display for Arch
[src]
impl Debug for Arch
[src]
impl Hash for Arch
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
default fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl FromStr for Arch
[src]
type Err = UnknownArchError
The associated error which can be returned from parsing.
fn from_str(string: &str) -> Result<Arch, UnknownArchError>
[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,