[][src]Struct rusoto_devicefarm::Test

pub struct Test {
    pub arn: Option<String>,
    pub counters: Option<Counters>,
    pub created: Option<f64>,
    pub device_minutes: Option<DeviceMinutes>,
    pub message: Option<String>,
    pub name: Option<String>,
    pub result: Option<String>,
    pub started: Option<f64>,
    pub status: Option<String>,
    pub stopped: Option<f64>,
    pub type_: Option<String>,
}

Represents a condition that is evaluated.

Fields

arn: Option<String>

The test's ARN.

counters: Option<Counters>

The test's result counters.

created: Option<f64>

When the test was created.

device_minutes: Option<DeviceMinutes>

Represents the total (metered or unmetered) minutes used by the test.

message: Option<String>

A message about the test's result.

name: Option<String>

The test's name.

result: Option<String>

The test's result.

Allowed values include:

started: Option<f64>

The test's start time.

status: Option<String>

The test's status.

Allowed values include:

stopped: Option<f64>

The test's stop time.

type_: Option<String>

The test's type.

Must be one of the following values:

Trait Implementations

impl PartialEq<Test> for Test[src]

impl Default for Test[src]

impl Clone for Test[src]

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

Performs copy-assignment from source. Read more

impl Debug for Test[src]

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

Auto Trait Implementations

impl Send for Test

impl Sync for Test

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
    T: From<U>, 
[src]

type Error = !

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

type Error = <U as TryFrom<T>>::Error

🔬 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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self