pub struct ArrayPropertiesSummary {
pub index: Option<i64>,
pub size: Option<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 children of array jobs.
size: Option<i64>
The size of the array job. This parameter is returned for parent array jobs.
Trait Implementations§
Source§impl Clone for ArrayPropertiesSummary
impl Clone for ArrayPropertiesSummary
Source§fn clone(&self) -> ArrayPropertiesSummary
fn clone(&self) -> ArrayPropertiesSummary
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 ArrayPropertiesSummary
impl Debug for ArrayPropertiesSummary
Source§impl Default for ArrayPropertiesSummary
impl Default for ArrayPropertiesSummary
Source§fn default() -> ArrayPropertiesSummary
fn default() -> ArrayPropertiesSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArrayPropertiesSummary
impl<'de> Deserialize<'de> for ArrayPropertiesSummary
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 ArrayPropertiesSummary
impl PartialEq for ArrayPropertiesSummary
impl StructuralPartialEq for ArrayPropertiesSummary
Auto Trait Implementations§
impl Freeze for ArrayPropertiesSummary
impl RefUnwindSafe for ArrayPropertiesSummary
impl Send for ArrayPropertiesSummary
impl Sync for ArrayPropertiesSummary
impl Unpin for ArrayPropertiesSummary
impl UnwindSafe for ArrayPropertiesSummary
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