[][src]Struct rusoto_cloudwatch::PartialFailure

pub struct PartialFailure {
    pub exception_type: Option<String>,
    pub failure_code: Option<String>,
    pub failure_description: Option<String>,
    pub failure_resource: Option<String>,
}

This array is empty if the API operation was successful for all the rules specified in the request. If the operation could not process one of the rules, the following data is returned for each of those rules.

Fields

exception_type: Option<String>

The type of error.

failure_code: Option<String>

The code of the error.

failure_description: Option<String>

A description of the error.

failure_resource: Option<String>

The specified rule that could not be deleted.

Trait Implementations

impl Clone for PartialFailure[src]

impl Debug for PartialFailure[src]

impl Default for PartialFailure[src]

impl PartialEq<PartialFailure> for PartialFailure[src]

impl StructuralPartialEq for PartialFailure[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> 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.