Struct rusoto_clouddirectory::FacetAttribute[][src]

pub struct FacetAttribute {
    pub attribute_definition: Option<FacetAttributeDefinition>,
    pub attribute_reference: Option<FacetAttributeReference>,
    pub name: String,
    pub required_behavior: Option<String>,
}

An attribute that is associated with the Facet.

Fields

A facet attribute consists of either a definition or a reference. This structure contains the attribute definition. See Attribute References for more information.

An attribute reference that is associated with the attribute. See Attribute References for more information.

The name of the facet attribute.

The required behavior of the FacetAttribute.

Trait Implementations

impl Default for FacetAttribute
[src]

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

impl Debug for FacetAttribute
[src]

Formats the value using the given formatter. Read more

impl Clone for FacetAttribute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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