[][src]Struct rusoto_eks::AddonIssue

pub struct AddonIssue {
    pub code: Option<String>,
    pub message: Option<String>,
    pub resource_ids: Option<Vec<String>>,
}

An issue related to an add-on.

Fields

code: Option<String>

A code that describes the type of issue.

message: Option<String>

A message that provides details about the issue and what might cause it.

resource_ids: Option<Vec<String>>

The resource IDs of the issue.

Trait Implementations

impl Clone for AddonIssue[src]

impl Debug for AddonIssue[src]

impl Default for AddonIssue[src]

impl<'de> Deserialize<'de> for AddonIssue[src]

impl PartialEq<AddonIssue> for AddonIssue[src]

impl StructuralPartialEq for AddonIssue[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.