pub struct DescribeJobExecutionRequest {
pub execution_number: Option<i64>,
pub job_id: String,
pub thing_name: String,
}Fields§
§execution_number: Option<i64>A string (consisting of the digits "0" through "9" which is used to specify a particular job execution on a particular device.
job_id: StringThe unique identifier you assigned to this job when it was created.
thing_name: StringThe name of the thing on which the job execution is running.
Trait Implementations§
Source§impl Clone for DescribeJobExecutionRequest
impl Clone for DescribeJobExecutionRequest
Source§fn clone(&self) -> DescribeJobExecutionRequest
fn clone(&self) -> DescribeJobExecutionRequest
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 DescribeJobExecutionRequest
impl Debug for DescribeJobExecutionRequest
Source§impl Default for DescribeJobExecutionRequest
impl Default for DescribeJobExecutionRequest
Source§fn default() -> DescribeJobExecutionRequest
fn default() -> DescribeJobExecutionRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeJobExecutionRequest
Auto Trait Implementations§
impl Freeze for DescribeJobExecutionRequest
impl RefUnwindSafe for DescribeJobExecutionRequest
impl Send for DescribeJobExecutionRequest
impl Sync for DescribeJobExecutionRequest
impl Unpin for DescribeJobExecutionRequest
impl UnwindSafe for DescribeJobExecutionRequest
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