[][src]Struct rusoto_rds::OptionGroupMembership

pub struct OptionGroupMembership {
    pub option_group_name: Option<String>,
    pub status: Option<String>,
}

Provides information on the option groups the DB instance is a member of.

Fields

option_group_name: Option<String>

The name of the option group that the instance belongs to.

status: Option<String>

The status of the DB instance's option group membership. Valid values are: in-sync, pending-apply, pending-removal, pending-maintenance-apply, pending-maintenance-removal, applying, removing, and failed.

Trait Implementations

impl Clone for OptionGroupMembership[src]

impl Debug for OptionGroupMembership[src]

impl Default for OptionGroupMembership[src]

impl PartialEq<OptionGroupMembership> for OptionGroupMembership[src]

impl StructuralPartialEq for OptionGroupMembership[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.