Struct google_androidmanagement1::HardwareStatus[][src]

pub struct HardwareStatus {
    pub battery_temperatures: Option<Vec<f32>>,
    pub skin_temperatures: Option<Vec<f32>>,
    pub gpu_temperatures: Option<Vec<f32>>,
    pub fan_speeds: Option<Vec<f32>>,
    pub cpu_temperatures: Option<Vec<f32>>,
    pub create_time: Option<String>,
    pub cpu_usages: Option<Vec<f32>>,
}

Hardware status. Temperatures may be compared to the temperature thresholds available in hardwareInfo to determine hardware health.

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

Fields

Current battery temperatures in Celsius for each battery on the device.

Current device skin temperatures in Celsius.

Current GPU temperatures in Celsius for each GPU on the device.

Fan speeds in RPM for each fan on the device. Empty array means that there are no fans or fan speed is not supported on the system.

Current CPU temperatures in Celsius for each CPU on the device.

The time the measurements were taken.

CPU usages in percentage for each core available on the device. Usage is 0 for each unplugged core. Empty array implies that CPU usage is not supported in the system.

Trait Implementations

impl Default for HardwareStatus
[src]

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

impl Clone for HardwareStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HardwareStatus
[src]

Formats the value using the given formatter. Read more

impl Part for HardwareStatus
[src]

Auto Trait Implementations