Struct DescribeJobExecutionReq
pub(super) struct DescribeJobExecutionReq {
pub(super) job_id: Option<String>,
pub(super) thing_name: Option<String>,
pub(super) execution: Option<i64>,
pub(super) include_job_doc: Option<bool>,
pub(super) token: Option<String>,
}Fields§
§job_id: Option<String>The unique identifier assigned to this job when it was created.
thing_name: Option<String>The name of the thing associated with the device.
execution: Option<i64>A number that identifies a job execution on a device. If not specified, the latest job execution is returned.
include_job_doc: Option<bool>Unless set to false, the response contains the job document. The default is true.
token: Option<String>Trait Implementations§
§impl Clone for DescribeJobExecutionReq
impl Clone for DescribeJobExecutionReq
§fn clone(&self) -> DescribeJobExecutionReq
fn clone(&self) -> DescribeJobExecutionReq
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 more§impl Debug for DescribeJobExecutionReq
impl Debug for DescribeJobExecutionReq
§impl Default for DescribeJobExecutionReq
impl Default for DescribeJobExecutionReq
§fn default() -> DescribeJobExecutionReq
fn default() -> DescribeJobExecutionReq
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for DescribeJobExecutionReq
impl<'de> Deserialize<'de> for DescribeJobExecutionReq
§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 Serialize for DescribeJobExecutionReq
impl Serialize for DescribeJobExecutionReq
Auto Trait Implementations§
impl Freeze for DescribeJobExecutionReq
impl RefUnwindSafe for DescribeJobExecutionReq
impl Send for DescribeJobExecutionReq
impl Sync for DescribeJobExecutionReq
impl Unpin for DescribeJobExecutionReq
impl UnwindSafe for DescribeJobExecutionReq
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