Struct rusoto_clouddirectory::FacetAttributeDefinition[][src]

pub struct FacetAttributeDefinition {
    pub default_value: Option<TypedAttributeValue>,
    pub is_immutable: Option<bool>,
    pub rules: Option<HashMap<String, Rule>>,
    pub type_: String,
}

A facet attribute definition. See Attribute References for more information.

Fields

The default value of the attribute (if configured).

Whether the attribute is mutable or not.

Validation rules attached to the attribute definition.

The type of the attribute.

Trait Implementations

impl Default for FacetAttributeDefinition
[src]

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

impl Debug for FacetAttributeDefinition
[src]

Formats the value using the given formatter. Read more

impl Clone for FacetAttributeDefinition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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