[][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 Clone for ListReviewPolicyResultsForHITRequest[src]

impl Debug for ListReviewPolicyResultsForHITRequest[src]

impl Default for ListReviewPolicyResultsForHITRequest[src]

impl PartialEq<ListReviewPolicyResultsForHITRequest> for ListReviewPolicyResultsForHITRequest[src]

impl Serialize for ListReviewPolicyResultsForHITRequest[src]

impl StructuralPartialEq for ListReviewPolicyResultsForHITRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,