Enum crossbundle_tools::types::AndroidStrategy
source · [−]pub enum AndroidStrategy {
GradleApk,
NativeApk,
NativeAab,
}Expand description
Supported strategies for building Android application.
Variants
GradleApk
Generate .apk with Gradle. Default strategy.
NativeApk
Generate native .aab without Gradle. This strategy currently doesn’t support Crossbow plugins.
NativeAab
Generate native .apk without Gradle. This strategy currently doesn’t support Crossbow plugins.
Trait Implementations
sourceimpl Clone for AndroidStrategy
impl Clone for AndroidStrategy
sourcefn clone(&self) -> AndroidStrategy
fn clone(&self) -> AndroidStrategy
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AndroidStrategy
impl Debug for AndroidStrategy
sourceimpl Default for AndroidStrategy
impl Default for AndroidStrategy
sourcefn default() -> AndroidStrategy
fn default() -> AndroidStrategy
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AndroidStrategy
impl<'de> Deserialize<'de> for AndroidStrategy
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl FromStr for AndroidStrategy
impl FromStr for AndroidStrategy
sourceimpl PartialEq<AndroidStrategy> for AndroidStrategy
impl PartialEq<AndroidStrategy> for AndroidStrategy
sourcefn eq(&self, other: &AndroidStrategy) -> bool
fn eq(&self, other: &AndroidStrategy) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl Serialize for AndroidStrategy
impl Serialize for AndroidStrategy
impl Copy for AndroidStrategy
impl Eq for AndroidStrategy
impl StructuralEq for AndroidStrategy
impl StructuralPartialEq for AndroidStrategy
Auto Trait Implementations
impl RefUnwindSafe for AndroidStrategy
impl Send for AndroidStrategy
impl Sync for AndroidStrategy
impl Unpin for AndroidStrategy
impl UnwindSafe for AndroidStrategy
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.