Struct rusoto_marketplace_entitlement::EntitlementValue[][src]

pub struct EntitlementValue {
    pub boolean_value: Option<bool>,
    pub double_value: Option<f64>,
    pub integer_value: Option<i64>,
    pub string_value: Option<String>,
}

The EntitlementValue represents the amount of capacity that the customer is entitled to for the product.

Fields

The BooleanValue field will be populated with a boolean value when the entitlement is a boolean type. Otherwise, the field will not be set.

The DoubleValue field will be populated with a double value when the entitlement is a double type. Otherwise, the field will not be set.

The IntegerValue field will be populated with an integer value when the entitlement is an integer type. Otherwise, the field will not be set.

The StringValue field will be populated with a string value when the entitlement is a string type. Otherwise, the field will not be set.

Trait Implementations

impl Default for EntitlementValue
[src]

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

impl Debug for EntitlementValue
[src]

Formats the value using the given formatter. Read more

impl Clone for EntitlementValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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