Struct rusoto_codepipeline::FailureDetails[][src]

pub struct FailureDetails {
    pub external_execution_id: Option<String>,
    pub message: String,
    pub type_: String,
}

Represents information about failure details.

Fields

The external ID of the run of the action that failed.

The message about the failure.

The type of the failure.

Trait Implementations

impl Default for FailureDetails
[src]

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

impl Debug for FailureDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for FailureDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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