Struct rusoto_snowball::ListJobsResult[][src]

pub struct ListJobsResult {
    pub job_list_entries: Option<Vec<JobListEntry>>,
    pub next_token: Option<String>,
}

Fields

Each JobListEntry object contains a job's state, a job's ID, and a value that indicates whether the job is a job part, in the case of export jobs.

HTTP requests are stateless. If you use this automatically generated NextToken value in your next ListJobs call, your returned JobListEntry objects will start from this point in the array.

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