pub struct JobProcessDetails {
pub number_of_canceled_things: Option<i64>,
pub number_of_failed_things: Option<i64>,
pub number_of_in_progress_things: Option<i64>,
pub number_of_queued_things: Option<i64>,
pub number_of_rejected_things: Option<i64>,
pub number_of_removed_things: Option<i64>,
pub number_of_succeeded_things: Option<i64>,
pub number_of_timed_out_things: Option<i64>,
pub processing_targets: Option<Vec<String>>,
}Expand description
The job process details.
Fields§
§number_of_canceled_things: Option<i64>The number of things that cancelled the job.
number_of_failed_things: Option<i64>The number of things that failed executing the job.
number_of_in_progress_things: Option<i64>The number of things currently executing the job.
number_of_queued_things: Option<i64>The number of things that are awaiting execution of the job.
number_of_rejected_things: Option<i64>The number of things that rejected the job.
number_of_removed_things: Option<i64>The number of things that are no longer scheduled to execute the job because they have been deleted or have been removed from the group that was a target of the job.
number_of_succeeded_things: Option<i64>The number of things which successfully completed the job.
number_of_timed_out_things: Option<i64>The number of things whose job execution status is TIMED_OUT.
processing_targets: Option<Vec<String>>The target devices to which the job execution is being rolled out. This value will be null after the job execution has finished rolling out to all the target devices.
Trait Implementations§
Source§impl Clone for JobProcessDetails
impl Clone for JobProcessDetails
Source§fn clone(&self) -> JobProcessDetails
fn clone(&self) -> JobProcessDetails
Returns a duplicate 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 JobProcessDetails
impl Debug for JobProcessDetails
Source§impl Default for JobProcessDetails
impl Default for JobProcessDetails
Source§fn default() -> JobProcessDetails
fn default() -> JobProcessDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobProcessDetails
impl<'de> Deserialize<'de> for JobProcessDetails
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 JobProcessDetails
impl PartialEq for JobProcessDetails
impl StructuralPartialEq for JobProcessDetails
Auto Trait Implementations§
impl Freeze for JobProcessDetails
impl RefUnwindSafe for JobProcessDetails
impl Send for JobProcessDetails
impl Sync for JobProcessDetails
impl Unpin for JobProcessDetails
impl UnwindSafe for JobProcessDetails
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