[][src]Struct rusoto_devicefarm::Suite

pub struct Suite {
    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 collection of one or more tests.

Fields

The suite's ARN.

The suite's result counters.

When the suite was created.

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

A message about the suite's result.

The suite's name.

The suite's result.

Allowed values include:

  • PENDING: A pending condition.

  • PASSED: A passing condition.

  • WARNED: A warning condition.

  • FAILED: A failed condition.

  • SKIPPED: A skipped condition.

  • ERRORED: An error condition.

  • STOPPED: A stopped condition.

The suite's start time.

The suite's status.

Allowed values include:

  • PENDING: A pending status.

  • PENDINGCONCURRENCY: A pending concurrency status.

  • PENDINGDEVICE: A pending device status.

  • PROCESSING: A processing status.

  • SCHEDULING: A scheduling status.

  • PREPARING: A preparing status.

  • RUNNING: A running status.

  • COMPLETED: A completed status.

  • STOPPING: A stopping status.

The suite's stop time.

The suite's type.

Must be one of the following values:

  • BUILTINFUZZ: The built-in fuzz type.

  • BUILTINEXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.

  • APPIUMJAVAJUNIT: The Appium Java JUnit type.

  • APPIUMJAVATESTNG: The Appium Java TestNG type.

  • APPIUMPYTHON: The Appium Python type.

  • APPIUMWEBJAVAJUNIT: The Appium Java JUnit type for Web apps.

  • APPIUMWEBJAVATESTNG: The Appium Java TestNG type for Web apps.

  • APPIUMWEBPYTHON: The Appium Python type for Web apps.

  • CALABASH: The Calabash type.

  • INSTRUMENTATION: The Instrumentation type.

  • UIAUTOMATION: The uiautomation type.

  • UIAUTOMATOR: The uiautomator type.

  • XCTEST: The XCode test type.

  • XCTESTUI: The XCode UI test type.

Trait Implementations

impl Clone for Suite
[src]

Performs copy-assignment from source. Read more

impl Default for Suite
[src]

impl PartialEq<Suite> for Suite
[src]

impl Debug for Suite
[src]

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

Auto Trait Implementations

impl Send for Suite

impl Sync for Suite

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