[][src]Struct rusoto_codepipeline::ExecutionDetails

pub struct ExecutionDetails {
    pub external_execution_id: Option<String>,
    pub percent_complete: Option<i64>,
    pub summary: Option<String>,
}

The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

Fields

external_execution_id: Option<String>

The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.

percent_complete: Option<i64>

The percentage of work completed on the action, represented on a scale of 0 to 100 percent.

summary: Option<String>

The summary of the current status of the actions.

Trait Implementations

impl Clone for ExecutionDetails[src]

impl Debug for ExecutionDetails[src]

impl Default for ExecutionDetails[src]

impl PartialEq<ExecutionDetails> for ExecutionDetails[src]

impl Serialize for ExecutionDetails[src]

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