Struct rusoto_clouddirectory::TypedAttributeValue[][src]

pub struct TypedAttributeValue {
    pub binary_value: Option<Vec<u8>>,
    pub boolean_value: Option<bool>,
    pub datetime_value: Option<f64>,
    pub number_value: Option<String>,
    pub string_value: Option<String>,
}

Represents the data for a typed attribute. You can set one, and only one, of the elements. Each attribute in an item is a name-value pair. Attributes have a single value.

Fields

A binary data value.

A Boolean data value.

A date and time value.

A number data value.

A string data value.

Trait Implementations

impl Default for TypedAttributeValue
[src]

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

impl Debug for TypedAttributeValue
[src]

Formats the value using the given formatter. Read more

impl Clone for TypedAttributeValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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