[][src]Struct rusoto_batch::AttemptDetail

pub struct AttemptDetail {
    pub container: Option<AttemptContainerDetail>,
    pub started_at: Option<i64>,
    pub status_reason: Option<String>,
    pub stopped_at: Option<i64>,
}

An object representing a job attempt.

Fields

container: Option<AttemptContainerDetail>

Details about the container in this job attempt.

started_at: Option<i64>

The Unix timestamp (in seconds and milliseconds) for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).

status_reason: Option<String>

A short, human-readable string to provide additional details about the current status of the job attempt.

stopped_at: Option<i64>

The Unix timestamp (in seconds and milliseconds) for when the attempt was stopped (when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED).

Trait Implementations

impl Clone for AttemptDetail[src]

impl Debug for AttemptDetail[src]

impl Default for AttemptDetail[src]

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

impl PartialEq<AttemptDetail> for AttemptDetail[src]

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