Struct rusoto_mturk::ListQualificationTypesResponse[][src]

pub struct ListQualificationTypesResponse {
    pub next_token: Option<String>,
    pub num_results: Option<i64>,
    pub qualification_types: Option<Vec<QualificationType>>,
}

Fields

The number of Qualification types on this page in the filtered results list, equivalent to the number of types this operation returns.

The list of QualificationType elements returned by the query.

Trait Implementations

impl Default for ListQualificationTypesResponse
[src]

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

impl Debug for ListQualificationTypesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListQualificationTypesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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