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]

[src]

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

impl Debug for TypedAttributeValue
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TypedAttributeValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations