Struct rusoto_cognito_idp::NumberAttributeConstraintsType[][src]

pub struct NumberAttributeConstraintsType {
    pub max_value: Option<String>,
    pub min_value: Option<String>,
}

The minimum and maximum value of an attribute that is of the number data type.

Fields

The maximum value of an attribute that is of the number data type.

The minimum value of an attribute that is of the number data type.

Trait Implementations

impl Default for NumberAttributeConstraintsType
[src]

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

impl Debug for NumberAttributeConstraintsType
[src]

Formats the value using the given formatter. Read more

impl Clone for NumberAttributeConstraintsType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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