Struct rusoto_dax::NodeTypeSpecificValue[][src]

pub struct NodeTypeSpecificValue {
    pub node_type: Option<String>,
    pub value: Option<String>,
}

Represents a parameter value that is applicable to a particular node type.

Fields

A node type to which the parameter value applies.

The parameter value for this node type.

Trait Implementations

impl Default for NodeTypeSpecificValue
[src]

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

impl Debug for NodeTypeSpecificValue
[src]

Formats the value using the given formatter. Read more

impl Clone for NodeTypeSpecificValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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