[][src]Enum target_lexicon::Architecture

pub enum Architecture {
    Unknown,
    Aarch64,
    Arm,
    Armv4t,
    Armv5te,
    Armv7,
    Armv7s,
    Asmjs,
    I386,
    I586,
    I686,
    Mips,
    Mips64,
    Mips64el,
    Mipsel,
    Msp430,
    Powerpc,
    Powerpc64,
    Powerpc64le,
    Riscv32,
    Riscv64,
    S390x,
    Sparc,
    Sparc64,
    Sparcv9,
    Thumbv6m,
    Thumbv7em,
    Thumbv7m,
    Wasm32,
    X86_64,
}

The "architecture" field, which in some cases also specifies a specific subarchitecture.

Variants

UnknownAarch64ArmArmv4tArmv5teArmv7Armv7sAsmjsI386I586I686MipsMips64Mips64elMipselMsp430PowerpcPowerpc64Powerpc64leRiscv32Riscv64S390xSparcSparc64Sparcv9Thumbv6mThumbv7emThumbv7mWasm32X86_64

Methods

impl Architecture[src]

pub fn host() -> Self[src]

Return the architecture for the current host.

impl Architecture[src]

pub fn endianness(self) -> Result<Endianness, ()>[src]

Return the endianness of this architecture.

pub fn pointer_width(self) -> Result<PointerWidth, ()>[src]

Return the pointer bit width of this target's architecture.

Trait Implementations

impl Display for Architecture[src]

impl Debug for Architecture[src]

impl PartialEq<Architecture> for Architecture[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for Architecture[src]

impl Hash for Architecture[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Copy for Architecture[src]

impl FromStr for Architecture[src]

type Err = ()

The associated error which can be returned from parsing.

impl Clone for Architecture[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Architecture[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]