Struct rusoto_elastictranscoder::ListJobsByStatusResponse[][src]

pub struct ListJobsByStatusResponse {
    pub jobs: Option<Vec<Job>>,
    pub next_page_token: Option<String>,
}

The ListJobsByStatusResponse structure.

Fields

An array of Job objects that have the specified status.

A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of NextPageToken is null.

Trait Implementations

impl Default for ListJobsByStatusResponse
[src]

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

impl Debug for ListJobsByStatusResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListJobsByStatusResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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