Struct rusoto_lex_models::EnumerationValue[][src]

pub struct EnumerationValue {
    pub synonyms: Option<Vec<String>>,
    pub value: String,
}

Each slot type can have a set of values. Each enumeration value represents a value the slot type can take.

For example, a pizza ordering bot could have a slot type that specifies the type of crust that the pizza should have. The slot type could include the values

  • thick

  • thin

  • stuffed

Fields

Additional values related to the slot type value.

The value of the slot type.

Trait Implementations

impl Default for EnumerationValue
[src]

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

impl Debug for EnumerationValue
[src]

Formats the value using the given formatter. Read more

impl Clone for EnumerationValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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