Struct aws_sdk_iot::types::JobExecutionSummaryForJob
source · #[non_exhaustive]pub struct JobExecutionSummaryForJob {
pub thing_arn: Option<String>,
pub job_execution_summary: Option<JobExecutionSummary>,
}
Expand description
Contains a summary of information about job executions for a specific job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.thing_arn: Option<String>
The ARN of the thing on which the job execution is running.
job_execution_summary: Option<JobExecutionSummary>
Contains a subset of information about a job execution.
Implementations§
source§impl JobExecutionSummaryForJob
impl JobExecutionSummaryForJob
sourcepub fn thing_arn(&self) -> Option<&str>
pub fn thing_arn(&self) -> Option<&str>
The ARN of the thing on which the job execution is running.
sourcepub fn job_execution_summary(&self) -> Option<&JobExecutionSummary>
pub fn job_execution_summary(&self) -> Option<&JobExecutionSummary>
Contains a subset of information about a job execution.
source§impl JobExecutionSummaryForJob
impl JobExecutionSummaryForJob
sourcepub fn builder() -> JobExecutionSummaryForJobBuilder
pub fn builder() -> JobExecutionSummaryForJobBuilder
Creates a new builder-style object to manufacture JobExecutionSummaryForJob
.
Trait Implementations§
source§impl Clone for JobExecutionSummaryForJob
impl Clone for JobExecutionSummaryForJob
source§fn clone(&self) -> JobExecutionSummaryForJob
fn clone(&self) -> JobExecutionSummaryForJob
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 JobExecutionSummaryForJob
impl Debug for JobExecutionSummaryForJob
source§impl PartialEq for JobExecutionSummaryForJob
impl PartialEq for JobExecutionSummaryForJob
source§fn eq(&self, other: &JobExecutionSummaryForJob) -> bool
fn eq(&self, other: &JobExecutionSummaryForJob) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for JobExecutionSummaryForJob
Auto Trait Implementations§
impl RefUnwindSafe for JobExecutionSummaryForJob
impl Send for JobExecutionSummaryForJob
impl Sync for JobExecutionSummaryForJob
impl Unpin for JobExecutionSummaryForJob
impl UnwindSafe for JobExecutionSummaryForJob
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.