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]

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

impl Debug for TypedAttributeValueRange
[src]

Formats the value using the given formatter. Read more

impl Clone for TypedAttributeValueRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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