Struct rusoto_mturk::ListQualificationRequestsResponse[][src]

pub struct ListQualificationRequestsResponse {
    pub next_token: Option<String>,
    pub num_results: Option<i64>,
    pub qualification_requests: Option<Vec<QualificationRequest>>,
}

Fields

The number of Qualification requests on this page in the filtered results list, equivalent to the number of Qualification requests being returned by this call.

The Qualification request. The response includes one QualificationRequest element for each Qualification request returned by the query.

Trait Implementations

impl Default for ListQualificationRequestsResponse
[src]

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

impl Debug for ListQualificationRequestsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListQualificationRequestsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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