[][src]Struct google_androidmanagement1::SoftwareInfo

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

primary_language_code: Option<String>

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

android_build_time: Option<String>

Build time.

android_build_number: Option<String>

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

device_build_signature: Option<String>

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.

android_device_policy_version_code: Option<i32>

The Android Device Policy app version code.

security_patch_level: Option<String>

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

android_device_policy_version_name: Option<String>

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

device_kernel_version: Option<String>

Kernel version, for example, 2.6.32.9-g103d848.

android_version: Option<String>

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

bootloader_version: Option<String>

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

Trait Implementations

impl Clone for SoftwareInfo[src]

impl Debug for SoftwareInfo[src]

impl Default for SoftwareInfo[src]

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

impl Part for SoftwareInfo[src]

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