Struct rusoto_devicefarm::DeviceMinutes[][src]

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 Default for DeviceMinutes
[src]

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

impl Debug for DeviceMinutes
[src]

Formats the value using the given formatter. Read more

impl Clone for DeviceMinutes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeviceMinutes
[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