pub struct ListJobExecutionsForThingResponse {
pub execution_summaries: Option<Vec<JobExecutionSummaryForThing>>,
pub next_token: Option<String>,
}Fields§
§execution_summaries: Option<Vec<JobExecutionSummaryForThing>>A list of job execution summaries.
next_token: Option<String>The token for the next set of results, or null if there are no additional results.
Trait Implementations§
Source§impl Clone for ListJobExecutionsForThingResponse
impl Clone for ListJobExecutionsForThingResponse
Source§fn clone(&self) -> ListJobExecutionsForThingResponse
fn clone(&self) -> ListJobExecutionsForThingResponse
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 Default for ListJobExecutionsForThingResponse
impl Default for ListJobExecutionsForThingResponse
Source§fn default() -> ListJobExecutionsForThingResponse
fn default() -> ListJobExecutionsForThingResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListJobExecutionsForThingResponse
impl<'de> Deserialize<'de> for ListJobExecutionsForThingResponse
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 ListJobExecutionsForThingResponse
impl PartialEq for ListJobExecutionsForThingResponse
Source§fn eq(&self, other: &ListJobExecutionsForThingResponse) -> bool
fn eq(&self, other: &ListJobExecutionsForThingResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListJobExecutionsForThingResponse
Auto Trait Implementations§
impl Freeze for ListJobExecutionsForThingResponse
impl RefUnwindSafe for ListJobExecutionsForThingResponse
impl Send for ListJobExecutionsForThingResponse
impl Sync for ListJobExecutionsForThingResponse
impl Unpin for ListJobExecutionsForThingResponse
impl UnwindSafe for ListJobExecutionsForThingResponse
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