[][src]Struct rusoto_mturk::ListReviewPolicyResultsForHITRequest

pub struct ListReviewPolicyResultsForHITRequest {
    pub hit_id: String,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub policy_levels: Option<Vec<String>>,
    pub retrieve_actions: Option<bool>,
    pub retrieve_results: Option<bool>,
}

Fields

hit_id: String

The unique identifier of the HIT to retrieve review results for.

max_results: Option<i64>

Limit the number of results returned.

next_token: Option<String>

Pagination token

policy_levels: Option<Vec<String>>

The Policy Level(s) to retrieve review results for - HIT or Assignment. If omitted, the default behavior is to retrieve all data for both policy levels. For a list of all the described policies, see Review Policies.

retrieve_actions: Option<bool>

Specify if the operation should retrieve a list of the actions taken executing the Review Policies and their outcomes.

retrieve_results: Option<bool>

Specify if the operation should retrieve a list of the results computed by the Review Policies.

Trait Implementations

impl PartialEq<ListReviewPolicyResultsForHITRequest> for ListReviewPolicyResultsForHITRequest[src]

impl Default for ListReviewPolicyResultsForHITRequest[src]

impl Clone for ListReviewPolicyResultsForHITRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ListReviewPolicyResultsForHITRequest[src]

impl Serialize for ListReviewPolicyResultsForHITRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self