Struct google_androidmanagement1::SoftwareInfo[][src]

pub struct SoftwareInfo {
    pub primary_language_code: Option<String>,
    pub android_build_time: Option<String>,
    pub android_build_number: Option<String>,
    pub device_build_signature: Option<String>,
    pub android_device_policy_version_code: Option<i32>,
    pub security_patch_level: Option<String>,
    pub android_device_policy_version_name: Option<String>,
    pub device_kernel_version: Option<String>,
    pub android_version: Option<String>,
    pub bootloader_version: Option<String>,
}

Information about device software.

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

Fields

An IETF BCP 47 language code for the primary locale on the device.

Build time.

Android build ID string meant for displaying to the user. For example, shamu-userdebug 6.0.1 MOB30I 2756745 dev-keys.

SHA-256 hash of android.content.pm.Signature (https://developer.android.com/reference/android/content/pm/Signature.html) associated with the system package, which can be used to verify that the system build hasn't been modified.

The Android Device Policy app version code.

Security patch level, e.g. 2016-05-01.

The Android Device Policy app version as displayed to the user.

Kernel version, for example, 2.6.32.9-g103d848.

The user-visible Android version string. For example, 6.0.1.

The system bootloader version number, e.g. 0.6.7.

Trait Implementations

impl Default for SoftwareInfo
[src]

Returns the "default value" for a type. Read more

impl Clone for SoftwareInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SoftwareInfo
[src]

Formats the value using the given formatter. Read more

impl Part for SoftwareInfo
[src]

Auto Trait Implementations