[][src]Struct rusoto_mturk::ReviewActionDetail

pub struct ReviewActionDetail {
    pub action_id: Option<String>,
    pub action_name: Option<String>,
    pub complete_time: Option<f64>,
    pub error_code: Option<String>,
    pub result: Option<String>,
    pub status: Option<String>,
    pub target_id: Option<String>,
    pub target_type: Option<String>,
}

Both the AssignmentReviewReport and the HITReviewReport elements contains the ReviewActionDetail data structure. This structure is returned multiple times for each action specified in the Review Policy.

Fields

action_id: Option<String>

The unique identifier for the action.

action_name: Option<String>

The nature of the action itself. The Review Policy is responsible for examining the HIT and Assignments, emitting results, and deciding which other actions will be necessary.

complete_time: Option<f64>

The date when the action was completed.

error_code: Option<String>

Present only when the Results have a FAILED Status.

result: Option<String>

A description of the outcome of the review.

status: Option<String>

The current disposition of the action: INTENDED, SUCCEEDED, FAILED, or CANCELLED.

target_id: Option<String>

The specific HITId or AssignmentID targeted by the action.

target_type: Option<String>

The type of object in TargetId.

Trait Implementations

impl PartialEq<ReviewActionDetail> for ReviewActionDetail[src]

impl Default for ReviewActionDetail[src]

impl Clone for ReviewActionDetail[src]

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

Performs copy-assignment from source. Read more

impl Debug for ReviewActionDetail[src]

impl<'de> Deserialize<'de> for ReviewActionDetail[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self