[][src]Struct google_testing1::ApkManifest

pub struct ApkManifest {
    pub max_sdk_version: Option<i32>,
    pub min_sdk_version: Option<i32>,
    pub package_name: Option<String>,
    pub target_sdk_version: Option<i32>,
    pub application_label: Option<String>,
    pub intent_filters: Option<Vec<IntentFilter>>,
}

An Android app manifest. See http://developer.android.com/guide/topics/manifest/manifest-intro.html

This type is not used in any activity, and only used as part of another schema.

Fields

max_sdk_version: Option<i32>

Maximum API level on which the application is designed to run.

min_sdk_version: Option<i32>

Minimum API level required for the application to run.

package_name: Option<String>

Full Java-style package name for this application, e.g. "com.example.foo".

target_sdk_version: Option<i32>

Specifies the API Level on which the application is designed to run.

application_label: Option<String>

User-readable name for the application.

intent_filters: Option<Vec<IntentFilter>>

no description provided

Trait Implementations

impl Clone for ApkManifest[src]

impl Debug for ApkManifest[src]

impl Default for ApkManifest[src]

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

impl Part for ApkManifest[src]

impl Serialize for ApkManifest[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, 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.

impl<T> Typeable for T where
    T: Any