Struct rusoto_devicefarm::ListUniqueProblemsResult [] [src]

pub struct ListUniqueProblemsResult {
    pub next_token: Option<String>,
    pub unique_problems: Option<HashMap<String, Vec<UniqueProblem>>>,
}

Represents the result of a list unique problems request.

Fields

If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Information about the unique problems.

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.

Trait Implementations

impl Default for ListUniqueProblemsResult
[src]

[src]

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

impl Debug for ListUniqueProblemsResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListUniqueProblemsResult
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations