Struct rusoto_devicefarm::Problem[][src]

pub struct Problem {
    pub device: Option<Device>,
    pub job: Option<ProblemDetail>,
    pub message: Option<String>,
    pub result: Option<String>,
    pub run: Option<ProblemDetail>,
    pub suite: Option<ProblemDetail>,
    pub test: Option<ProblemDetail>,
}

Represents a specific warning or failure.

Fields

Information about the associated device.

Information about the associated job.

A message about the problem's result.

The problem'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.

Information about the associated run.

Information about the associated suite.

Information about the associated test.

Trait Implementations

impl Default for Problem
[src]

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

impl Debug for Problem
[src]

Formats the value using the given formatter. Read more

impl Clone for Problem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Problem

impl Sync for Problem