[][src]Struct google_androidmanagement1::ApplicationReport

pub struct ApplicationReport {
    pub display_name: Option<String>,
    pub installer_package_name: Option<String>,
    pub package_name: Option<String>,
    pub keyed_app_states: Option<Vec<KeyedAppState>>,
    pub package_sha256_hash: Option<String>,
    pub signing_key_cert_fingerprints: Option<Vec<String>>,
    pub application_source: Option<String>,
    pub state: Option<String>,
    pub version_name: Option<String>,
    pub version_code: Option<i32>,
    pub events: Option<Vec<ApplicationEvent>>,
}

Information reported about an installed app.

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

Fields

display_name: Option<String>

The display name of the app.

installer_package_name: Option<String>

The package name of the app that installed this app.

package_name: Option<String>

Package name of the app.

keyed_app_states: Option<Vec<KeyedAppState>>

List of keyed app states reported by the app.

package_sha256_hash: Option<String>

The SHA-256 hash of the app's APK file, which can be used to verify the app hasn't been modified. Each byte of the hash value is represented as a two-digit hexadecimal number.

signing_key_cert_fingerprints: Option<Vec<String>>

The SHA-1 hash of each android.content.pm.Signature (https://developer.android.com/reference/android/content/pm/Signature.html) associated with the app package. Each byte of each hash value is represented as a two-digit hexadecimal number.

application_source: Option<String>

The source of the package.

state: Option<String>

Application state.

version_name: Option<String>

The app version as displayed to the user.

version_code: Option<i32>

The app version code, which can be used to determine whether one version is more recent than another.

events: Option<Vec<ApplicationEvent>>

List of app events. The most recent 20 events are stored in the list.

Trait Implementations

impl Clone for ApplicationReport[src]

impl Debug for ApplicationReport[src]

impl Default for ApplicationReport[src]

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

impl Part for ApplicationReport[src]

impl Serialize for ApplicationReport[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