Struct rusoto_clouddirectory::TypedAttributeValueRange [] [src]

pub struct TypedAttributeValueRange {
    pub end_mode: String,
    pub end_value: Option<TypedAttributeValue>,
    pub start_mode: String,
    pub start_value: Option<TypedAttributeValue>,
}

A range of attribute values.

Fields

The inclusive or exclusive range end.

The attribute value to terminate the range at.

The inclusive or exclusive range start.

The value to start the range at.

Trait Implementations

impl Default for TypedAttributeValueRange
[src]

[src]

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

impl Debug for TypedAttributeValueRange
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TypedAttributeValueRange
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations