Struct rusoto_mturk::HITLayoutParameter[][src]

pub struct HITLayoutParameter {
    pub name: String,
    pub value: String,
}

The HITLayoutParameter data structure defines parameter values used with a HITLayout. A HITLayout is a reusable Amazon Mechanical Turk project template used to provide Human Intelligence Task (HIT) question data for CreateHIT.

Fields

The name of the parameter in the HITLayout.

The value substituted for the parameter referenced in the HITLayout.

Trait Implementations

impl Default for HITLayoutParameter
[src]

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

impl Debug for HITLayoutParameter
[src]

Formats the value using the given formatter. Read more

impl Clone for HITLayoutParameter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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