[][src]Struct rusoto_codepipeline::TransitionState

pub struct TransitionState {
    pub disabled_reason: Option<String>,
    pub enabled: Option<bool>,
    pub last_changed_at: Option<f64>,
    pub last_changed_by: Option<String>,
}

Represents information about the state of transitions between one stage and another stage.

Fields

disabled_reason: Option<String>

The user-specified reason why the transition between two stages of a pipeline was disabled.

enabled: Option<bool>

Whether the transition between stages is enabled (true) or disabled (false).

last_changed_at: Option<f64>

The timestamp when the transition state was last changed.

last_changed_by: Option<String>

The ID of the user who last changed the transition state.

Trait Implementations

impl Clone for TransitionState[src]

impl Default for TransitionState[src]

impl PartialEq<TransitionState> for TransitionState[src]

impl Debug for TransitionState[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self