[][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]

impl Default for CPU[src]

impl PartialEq<CPU> for CPU[src]

impl Debug for CPU[src]

impl StructuralPartialEq for CPU[src]

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

Auto Trait Implementations

impl Send for CPU

impl Sync for CPU

impl Unpin for CPU

impl UnwindSafe for CPU

impl RefUnwindSafe for CPU

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self