[][src]Struct rusoto_devicefarm::Job

pub struct Job {
    pub arn: Option<String>,
    pub counters: Option<Counters>,
    pub created: Option<f64>,
    pub device: Option<Device>,
    pub device_minutes: Option<DeviceMinutes>,
    pub instance_arn: Option<String>,
    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>,
    pub video_capture: Option<bool>,
    pub video_endpoint: Option<String>,
}

Represents a device.

Fields

arn: Option<String>

The job's ARN.

counters: Option<Counters>

The job's result counters.

created: Option<f64>

When the job was created.

device: Option<Device>

The device (phone or tablet).

device_minutes: Option<DeviceMinutes>

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

instance_arn: Option<String>

The ARN of the instance.

message: Option<String>

A message about the job's result.

name: Option<String>

The job's name.

result: Option<String>

The job's result.

Allowed values include:

  • PENDING

  • PASSED

  • WARNED

  • FAILED

  • SKIPPED

  • ERRORED

  • STOPPED

started: Option<f64>

The job's start time.

status: Option<String>

The job's status.

Allowed values include:

  • PENDING

  • PENDINGCONCURRENCY

  • PENDINGDEVICE

  • PROCESSING

  • SCHEDULING

  • PREPARING

  • RUNNING

  • COMPLETED

  • STOPPING

stopped: Option<f64>

The job's stop time.

type_: Option<String>

The job's type.

Allowed values include the following:

  • BUILTINFUZZ

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

  • APPIUMJAVAJUNIT

  • APPIUMJAVATESTNG

  • APPIUMPYTHON

  • APPIUMNODE

  • APPIUMRUBY

  • APPIUMWEBJAVAJUNIT

  • APPIUMWEBJAVATESTNG

  • APPIUMWEBPYTHON

  • APPIUMWEBNODE

  • APPIUMWEBRUBY

  • CALABASH

  • INSTRUMENTATION

  • UIAUTOMATION

  • UIAUTOMATOR

  • XCTEST

  • XCTESTUI

video_capture: Option<bool>

This value is set to true if video capture is enabled. Otherwise, it is set to false.

video_endpoint: Option<String>

The endpoint for streaming device video.

Trait Implementations

impl Clone for Job[src]

impl Debug for Job[src]

impl Default for Job[src]

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

impl PartialEq<Job> for Job[src]

impl StructuralPartialEq for Job[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.