Struct rusoto_devicefarm::ListJobsResult[][src]

pub struct ListJobsResult {
    pub jobs: Option<Vec<Job>>,
    pub next_token: Option<String>,
}

Represents the result of a list jobs request.

Fields

Information about the jobs.

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.

Trait Implementations

impl Default for ListJobsResult
[src]

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

impl Debug for ListJobsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListJobsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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