Struct rusoto_sdb::ReplaceableAttribute[][src]

pub struct ReplaceableAttribute {
    pub name: String,
    pub replace: Option<bool>,
    pub value: String,
}

Fields

The name of the replaceable attribute.

A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false.

The value of the replaceable attribute.

Trait Implementations

impl Default for ReplaceableAttribute
[src]

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

impl Debug for ReplaceableAttribute
[src]

Formats the value using the given formatter. Read more

impl Clone for ReplaceableAttribute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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