Struct rusoto_devicefarm::CPU[][src]

pub struct CPU {
    pub architecture: Option<String>,
    pub clock: Option<f64>,
    pub frequency: Option<String>,
}

Represents the amount of CPU that an app is using on a physical device.

Note that this does not represent system-wide CPU usage.

Fields

The CPU's architecture, for example x86 or ARM.

The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

The CPU's frequency.

Trait Implementations

impl Default for CPU
[src]

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

impl Debug for CPU
[src]

Formats the value using the given formatter. Read more

impl Clone for CPU
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CPU
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for CPU

impl Sync for CPU