[][src]Struct rusoto_clouddirectory::TypedAttributeValueRange

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. For more information, see Range Filters.

Fields

end_mode: String

The inclusive or exclusive range end.

end_value: Option<TypedAttributeValue>

The attribute value to terminate the range at.

start_mode: String

The inclusive or exclusive range start.

start_value: Option<TypedAttributeValue>

The value to start the range at.

Trait Implementations

impl Clone for TypedAttributeValueRange[src]

impl Debug for TypedAttributeValueRange[src]

impl Default for TypedAttributeValueRange[src]

impl PartialEq<TypedAttributeValueRange> for TypedAttributeValueRange[src]

impl Serialize for TypedAttributeValueRange[src]

impl StructuralPartialEq for TypedAttributeValueRange[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.