pub struct ArrayPropertiesDetail {
pub index: Option<i64>,
pub size: Option<i64>,
pub status_summary: Option<HashMap<String, i64>>,
}
Expand description
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§
Source§impl Clone for ArrayPropertiesDetail
impl Clone for ArrayPropertiesDetail
Source§fn clone(&self) -> ArrayPropertiesDetail
fn clone(&self) -> ArrayPropertiesDetail
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ArrayPropertiesDetail
impl Debug for ArrayPropertiesDetail
Source§impl Default for ArrayPropertiesDetail
impl Default for ArrayPropertiesDetail
Source§fn default() -> ArrayPropertiesDetail
fn default() -> ArrayPropertiesDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArrayPropertiesDetail
impl<'de> Deserialize<'de> for ArrayPropertiesDetail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ArrayPropertiesDetail
impl PartialEq for ArrayPropertiesDetail
impl StructuralPartialEq for ArrayPropertiesDetail
Auto Trait Implementations§
impl Freeze for ArrayPropertiesDetail
impl RefUnwindSafe for ArrayPropertiesDetail
impl Send for ArrayPropertiesDetail
impl Sync for ArrayPropertiesDetail
impl Unpin for ArrayPropertiesDetail
impl UnwindSafe for ArrayPropertiesDetail
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more