[][src]Struct rusoto_codepipeline::ActionState

pub struct ActionState {
    pub action_name: Option<String>,
    pub current_revision: Option<ActionRevision>,
    pub entity_url: Option<String>,
    pub latest_execution: Option<ActionExecution>,
    pub revision_url: Option<String>,
}

Represents information about the state of an action.

Fields

action_name: Option<String>

The name of the action.

current_revision: Option<ActionRevision>

Represents information about the version (or revision) of an action.

entity_url: Option<String>

A URL link for more information about the state of the action, such as a deployment group details page.

latest_execution: Option<ActionExecution>

Represents information about the run of an action.

revision_url: Option<String>

A URL link for more information about the revision, such as a commit details page.

Trait Implementations

impl Clone for ActionState[src]

impl Debug for ActionState[src]

impl Default for ActionState[src]

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

impl PartialEq<ActionState> for ActionState[src]

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