[][src]Struct rusoto_devicefarm::DeviceMinutes

pub struct DeviceMinutes {
    pub metered: Option<f64>,
    pub total: Option<f64>,
    pub unmetered: Option<f64>,
}

Represents the total (metered or unmetered) minutes used by the resource to run tests. Contains the sum of minutes consumed by all children.

Fields

When specified, represents only the sum of metered minutes used by the resource to run tests.

When specified, represents the total minutes used by the resource to run tests.

When specified, represents only the sum of unmetered minutes used by the resource to run tests.

Trait Implementations

impl Clone for DeviceMinutes
[src]

Performs copy-assignment from source. Read more

impl Default for DeviceMinutes
[src]

impl PartialEq<DeviceMinutes> for DeviceMinutes
[src]

impl Debug for DeviceMinutes
[src]

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

Auto Trait Implementations

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]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T