pub struct JobExecutionSummaryForThing {
pub job_execution_summary: Option<JobExecutionSummary>,
pub job_id: Option<String>,
}Expand description
The job execution summary for a thing.
Fields§
§job_execution_summary: Option<JobExecutionSummary>Contains a subset of information about a job execution.
job_id: Option<String>The unique identifier you assigned to this job when it was created.
Trait Implementations§
Source§impl Clone for JobExecutionSummaryForThing
impl Clone for JobExecutionSummaryForThing
Source§fn clone(&self) -> JobExecutionSummaryForThing
fn clone(&self) -> JobExecutionSummaryForThing
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 JobExecutionSummaryForThing
impl Debug for JobExecutionSummaryForThing
Source§impl Default for JobExecutionSummaryForThing
impl Default for JobExecutionSummaryForThing
Source§fn default() -> JobExecutionSummaryForThing
fn default() -> JobExecutionSummaryForThing
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobExecutionSummaryForThing
impl<'de> Deserialize<'de> for JobExecutionSummaryForThing
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
impl StructuralPartialEq for JobExecutionSummaryForThing
Auto Trait Implementations§
impl Freeze for JobExecutionSummaryForThing
impl RefUnwindSafe for JobExecutionSummaryForThing
impl Send for JobExecutionSummaryForThing
impl Sync for JobExecutionSummaryForThing
impl Unpin for JobExecutionSummaryForThing
impl UnwindSafe for JobExecutionSummaryForThing
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