Struct tauri_utils::config::AndroidConfig
source · pub struct AndroidConfig {
pub min_sdk_version: u32,
}Expand description
General configuration for the iOS target.
Fields§
§min_sdk_version: u32The minimum API level required for the application to run. The Android system will prevent the user from installing the application if the system’s API level is lower than the value specified.
Trait Implementations§
source§impl Clone for AndroidConfig
impl Clone for AndroidConfig
source§fn clone(&self) -> AndroidConfig
fn clone(&self) -> AndroidConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AndroidConfig
impl Debug for AndroidConfig
source§impl Default for AndroidConfig
impl Default for AndroidConfig
source§impl<'de> Deserialize<'de> for AndroidConfig
impl<'de> Deserialize<'de> for AndroidConfig
source§fn 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
source§impl PartialEq<AndroidConfig> for AndroidConfig
impl PartialEq<AndroidConfig> for AndroidConfig
source§fn eq(&self, other: &AndroidConfig) -> bool
fn eq(&self, other: &AndroidConfig) -> bool
This method tests for
self and other values to be equal, and is used
by ==.