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]

[src]

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

impl Debug for CPU
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CPU
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for CPU

impl Sync for CPU