Struct rusoto_mturk::ListWorkerBlocksResponse[][src]

pub struct ListWorkerBlocksResponse {
    pub next_token: Option<String>,
    pub num_results: Option<i64>,
    pub worker_blocks: Option<Vec<WorkerBlock>>,
}

Fields

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

The list of WorkerBlocks, containing the collection of Worker IDs and reasons for blocking.

Trait Implementations

impl Default for ListWorkerBlocksResponse
[src]

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

impl Debug for ListWorkerBlocksResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListWorkerBlocksResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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