[][src]Struct cli::commands::build::android::AndroidBuildCommand

pub struct AndroidBuildCommand {
    pub shared: SharedBuildCommand,
    pub target: Vec<AndroidTarget>,
}

Fields

shared: SharedBuildCommandtarget: Vec<AndroidTarget>

Build for the given android architecture. Supported targets are: armv7-linux-androideabi, aarch64-linux-android, i686-linux-android, x86_64-linux-android

Implementations

impl AndroidBuildCommand[src]

pub fn run(&self, config: &Config) -> Result<()>[src]

pub fn execute(
    &self,
    config: &Config,
    build_context: &BuildContext
) -> Result<(String, AndroidSdk, PathBuf)>
[src]

Trait Implementations

impl Clap for AndroidBuildCommand[src]

impl Clone for AndroidBuildCommand[src]

impl Debug for AndroidBuildCommand[src]

impl FromArgMatches for AndroidBuildCommand[src]

impl IntoApp for AndroidBuildCommand[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> 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.