Enum symbolic_common::types::Arch[][src]

#[repr(u32)]
pub enum Arch { Unknown, X86, X86_64, X86_64h, Arm, ArmV5, ArmV6, ArmV6m, ArmV7, ArmV7f, ArmV7s, ArmV7k, ArmV7m, ArmV7em, Arm64, Arm64V8, Ppc, Ppc64, // some variants omitted }

An enum of supported architectures.

Variants

Methods

impl Arch
[src]

Creates an arch from the u32 it represents.

Returns the breakpad name for this Arch.

Returns the CPU family.

Returns the native pointer size.

Returns the name of the arch.

The name of the IP register if known.

Returns instruction alignment if fixed.

Trait Implementations

impl Debug for Arch
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Arch
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Arch
[src]

impl PartialOrd for Arch
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Arch
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Clone for Arch
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Arch
[src]

impl Default for Arch
[src]

Returns the "default value" for a type. Read more

impl Display for Arch
[src]

Formats the value using the given formatter. Read more

impl FromStr for Arch
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations

impl Send for Arch

impl Sync for Arch