Struct google_androidmanagement1::HardwareInfo[][src]

pub struct HardwareInfo {
    pub hardware: Option<String>,
    pub cpu_shutdown_temperatures: Option<Vec<f32>>,
    pub cpu_throttling_temperatures: Option<Vec<f32>>,
    pub battery_throttling_temperatures: Option<Vec<f32>>,
    pub serial_number: Option<String>,
    pub gpu_shutdown_temperatures: Option<Vec<f32>>,
    pub gpu_throttling_temperatures: Option<Vec<f32>>,
    pub skin_shutdown_temperatures: Option<Vec<f32>>,
    pub skin_throttling_temperatures: Option<Vec<f32>>,
    pub battery_shutdown_temperatures: Option<Vec<f32>>,
    pub device_baseband_version: Option<String>,
    pub model: Option<String>,
    pub brand: Option<String>,
    pub manufacturer: Option<String>,
}

Information about device hardware. The fields related to temperature thresholds are only available if hardwareStatusEnabled is true in the device's policy.

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

Fields

Name of the hardware. For example, Angler.

CPU shutdown temperature thresholds in Celsius for each CPU on the device.

CPU throttling temperature thresholds in Celsius for each CPU on the device.

Battery throttling temperature thresholds in Celsius for each battery on the device.

The device serial number.

GPU shutdown temperature thresholds in Celsius for each GPU on the device.

GPU throttling temperature thresholds in Celsius for each GPU on the device.

Device skin shutdown temperature thresholds in Celsius.

Device skin throttling temperature thresholds in Celsius.

Battery shutdown temperature thresholds in Celsius for each battery on the device.

Baseband version. For example, MDM9625_104662.22.05.34p.

The model of the device. For example, Asus Nexus 7.

Brand of the device. For example, Google.

Manufacturer. For example, Motorola.

Trait Implementations

impl Default for HardwareInfo
[src]

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

impl Clone for HardwareInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HardwareInfo
[src]

Formats the value using the given formatter. Read more

impl Part for HardwareInfo
[src]

Auto Trait Implementations