[][src]Enum lib_cargo_apk::config::AndroidBuildTarget

pub enum AndroidBuildTarget {
    ArmV7a,
    Arm64V8a,
    X86,
    X86_64,
}

Build targets supported by NDK

Variants

ArmV7a
Arm64V8a
X86
X86_64

Methods

impl AndroidBuildTarget[src]

pub fn android_abi(self) -> &'static str[src]

Identifier used in the NDK to refer to the ABI

pub fn rust_triple(self) -> &'static str[src]

Returns the triple used by the rust build tools

pub fn ndk_llvm_triple(self) -> &'static str[src]

pub fn ndk_triple(self) -> &'static str[src]

Returns the triple used by the non-LLVM parts of the NDK

Trait Implementations

impl Clone for AndroidBuildTarget[src]

impl Copy for AndroidBuildTarget[src]

impl Debug for AndroidBuildTarget[src]

impl<'de> Deserialize<'de> for AndroidBuildTarget[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,