[][src]Enum creator_tools::types::AndroidTarget

pub enum AndroidTarget {
    Armv7LinuxAndroideabi,
    Aarch64LinuxAndroid,
    I686LinuxAndroid,
    X8664LinuxAndroid,
}

Variants

Armv7LinuxAndroideabi
Aarch64LinuxAndroid
I686LinuxAndroid
X8664LinuxAndroid

Implementations

impl AndroidTarget[src]

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

Identifier used in the NDK to refer to the ABI

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

pub fn from_android_abi(abi: &str) -> Result<Self>[src]

Returns AndroidTarget for abi.

Trait Implementations

impl Clone for AndroidTarget[src]

impl Copy for AndroidTarget[src]

impl Debug for AndroidTarget[src]

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

impl Eq for AndroidTarget[src]

impl From<AndroidTarget> for BuildTarget[src]

impl FromStr for AndroidTarget[src]

type Err = AndroidError

The associated error which can be returned from parsing.

impl IntoRustTriple for AndroidTarget[src]

impl PartialEq<AndroidTarget> for AndroidTarget[src]

impl Serialize for AndroidTarget[src]

impl StructuralEq for AndroidTarget[src]

impl StructuralPartialEq for AndroidTarget[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: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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.