pub struct ListJobExecutionsForThingRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub status: Option<String>,
pub thing_name: String,
}Fields§
§max_results: Option<i64>The maximum number of results to be returned per request.
next_token: Option<String>The token to retrieve the next set of results.
status: Option<String>An optional filter that lets you search for jobs that have the specified status.
thing_name: StringThe thing name.
Trait Implementations§
Source§impl Clone for ListJobExecutionsForThingRequest
impl Clone for ListJobExecutionsForThingRequest
Source§fn clone(&self) -> ListJobExecutionsForThingRequest
fn clone(&self) -> ListJobExecutionsForThingRequest
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 ListJobExecutionsForThingRequest
impl Default for ListJobExecutionsForThingRequest
Source§fn default() -> ListJobExecutionsForThingRequest
fn default() -> ListJobExecutionsForThingRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListJobExecutionsForThingRequest
impl PartialEq for ListJobExecutionsForThingRequest
Source§fn eq(&self, other: &ListJobExecutionsForThingRequest) -> bool
fn eq(&self, other: &ListJobExecutionsForThingRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListJobExecutionsForThingRequest
Auto Trait Implementations§
impl Freeze for ListJobExecutionsForThingRequest
impl RefUnwindSafe for ListJobExecutionsForThingRequest
impl Send for ListJobExecutionsForThingRequest
impl Sync for ListJobExecutionsForThingRequest
impl Unpin for ListJobExecutionsForThingRequest
impl UnwindSafe for ListJobExecutionsForThingRequest
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