Struct rusoto_rds::OptionVersion[][src]

pub struct OptionVersion {
    pub is_default: Option<bool>,
    pub version: Option<String>,
}

The version for an option. Option group option versions are returned by the DescribeOptionGroupOptions action.

Fields

True if the version is the default version of the option, and otherwise false.

The version of the option.

Trait Implementations

impl Default for OptionVersion
[src]

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

impl Debug for OptionVersion
[src]

Formats the value using the given formatter. Read more

impl Clone for OptionVersion
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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