[][src]Struct creator_tools::types::AndroidManifest

pub struct AndroidManifest {
    pub package_name: String,
    pub package_label: String,
    pub version_name: String,
    pub version_code: u32,
    pub target_name: String,
    pub target_sdk_version: u32,
    pub min_sdk_version: u32,
    pub opengles_version: (u8, u8),
    pub features: Vec<Feature>,
    pub permissions: Vec<Permission>,
    pub intent_filters: Vec<IntentFilter>,
    pub icon: Option<String>,
    pub fullscreen: bool,
    pub orientation: Option<String>,
    pub debuggable: bool,
    pub split: Option<String>,
    pub application_metadatas: Vec<ApplicationMetadata>,
    pub activity_metadatas: Vec<ActivityMetadata>,
}

Fields

package_name: Stringpackage_label: Stringversion_name: Stringversion_code: u32target_name: Stringtarget_sdk_version: u32min_sdk_version: u32opengles_version: (u8, u8)features: Vec<Feature>permissions: Vec<Permission>intent_filters: Vec<IntentFilter>icon: Option<String>fullscreen: boolorientation: Option<String>debuggable: boolsplit: Option<String>application_metadatas: Vec<ApplicationMetadata>activity_metadatas: Vec<ActivityMetadata>

Trait Implementations

impl Clone for AndroidManifest[src]

impl Debug for AndroidManifest[src]

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

impl Display for AndroidManifest[src]

impl Serialize for AndroidManifest[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<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> ToString for T where
    T: Display + ?Sized
[src]

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.