[][src]Struct rusoto_glue::WorkflowRunStatistics

pub struct WorkflowRunStatistics {
    pub failed_actions: Option<i64>,
    pub running_actions: Option<i64>,
    pub stopped_actions: Option<i64>,
    pub succeeded_actions: Option<i64>,
    pub timeout_actions: Option<i64>,
    pub total_actions: Option<i64>,
}

Workflow run statistics provides statistics about the workflow run.

Fields

failed_actions: Option<i64>

Total number of Actions which have failed.

running_actions: Option<i64>

Total number Actions in running state.

stopped_actions: Option<i64>

Total number of Actions which have stopped.

succeeded_actions: Option<i64>

Total number of Actions which have succeeded.

timeout_actions: Option<i64>

Total number of Actions which timed out.

total_actions: Option<i64>

Total number of Actions in the workflow run.

Trait Implementations

impl Clone for WorkflowRunStatistics[src]

impl Debug for WorkflowRunStatistics[src]

impl Default for WorkflowRunStatistics[src]

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

impl PartialEq<WorkflowRunStatistics> for WorkflowRunStatistics[src]

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