Struct aws_sdk_devicefarm::types::DeviceMinutes
source · #[non_exhaustive]pub struct DeviceMinutes {
pub total: Option<f64>,
pub metered: Option<f64>,
pub unmetered: Option<f64>,
}
Expand description
Represents the total (metered or unmetered) minutes used by the resource to run tests. Contains the sum of minutes consumed by all children.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.total: Option<f64>
When specified, represents the total minutes used by the resource to run tests.
metered: Option<f64>
When specified, represents only the sum of metered minutes used by the resource to run tests.
unmetered: Option<f64>
When specified, represents only the sum of unmetered minutes used by the resource to run tests.
Implementations§
source§impl DeviceMinutes
impl DeviceMinutes
source§impl DeviceMinutes
impl DeviceMinutes
sourcepub fn builder() -> DeviceMinutesBuilder
pub fn builder() -> DeviceMinutesBuilder
Creates a new builder-style object to manufacture DeviceMinutes
.
Trait Implementations§
source§impl Clone for DeviceMinutes
impl Clone for DeviceMinutes
source§fn clone(&self) -> DeviceMinutes
fn clone(&self) -> DeviceMinutes
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DeviceMinutes
impl Debug for DeviceMinutes
source§impl PartialEq<DeviceMinutes> for DeviceMinutes
impl PartialEq<DeviceMinutes> for DeviceMinutes
source§fn eq(&self, other: &DeviceMinutes) -> bool
fn eq(&self, other: &DeviceMinutes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeviceMinutes
Auto Trait Implementations§
impl RefUnwindSafe for DeviceMinutes
impl Send for DeviceMinutes
impl Sync for DeviceMinutes
impl Unpin for DeviceMinutes
impl UnwindSafe for DeviceMinutes
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more