[][src]Enum target_lexicon::Aarch64Architecture

pub enum Aarch64Architecture {
    Aarch64,
    Aarch64be,
}

Variants

Aarch64Aarch64be

Methods

impl Aarch64Architecture[src]

pub fn is_thumb(self) -> bool[src]

Test if this architecture uses the Thumb instruction set.

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

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

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

Return the endianness of this architecture.

Trait Implementations

impl PartialEq<Aarch64Architecture> for Aarch64Architecture[src]

impl Eq for Aarch64Architecture[src]

impl Hash for Aarch64Architecture[src]

impl Display for Aarch64Architecture[src]

impl Debug for Aarch64Architecture[src]

impl FromStr for Aarch64Architecture[src]

type Err = ()

The associated error which can be returned from parsing.

impl Copy for Aarch64Architecture[src]

impl Clone for Aarch64Architecture[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> 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

The resulting type after obtaining ownership.

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