[][src]Struct rusoto_devicefarm::CPU

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

architecture: Option<String>

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

clock: Option<f64>

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

frequency: Option<String>

The CPU's frequency.

Trait Implementations

impl Clone for CPU[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<CPU> for CPU[src]

impl Default for CPU[src]

impl Debug for CPU[src]

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

Auto Trait Implementations

impl Send for CPU

impl Sync for CPU

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self