[][src]Struct rusoto_batch::ArrayPropertiesDetail

pub struct ArrayPropertiesDetail {
    pub index: Option<i64>,
    pub size: Option<i64>,
    pub status_summary: Option<HashMap<String, i64>>,
}

An object representing the array properties of a job.

Fields

index: Option<i64>

The job index within the array that is associated with this job. This parameter is returned for array job children.

size: Option<i64>

The size of the array job. This parameter is returned for parent array jobs.

status_summary: Option<HashMap<String, i64>>

A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.

Trait Implementations

impl Clone for ArrayPropertiesDetail[src]

impl Debug for ArrayPropertiesDetail[src]

impl Default for ArrayPropertiesDetail[src]

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

impl PartialEq<ArrayPropertiesDetail> for ArrayPropertiesDetail[src]

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