pub struct ListThingRegistrationTaskReportsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub report_type: String,
pub task_id: String,
}Fields§
§max_results: Option<i64>The maximum number of results to return per request.
next_token: Option<String>The token to retrieve the next set of results.
report_type: StringThe type of task report.
task_id: StringThe id of the task.
Trait Implementations§
Source§impl Clone for ListThingRegistrationTaskReportsRequest
impl Clone for ListThingRegistrationTaskReportsRequest
Source§fn clone(&self) -> ListThingRegistrationTaskReportsRequest
fn clone(&self) -> ListThingRegistrationTaskReportsRequest
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 ListThingRegistrationTaskReportsRequest
impl Default for ListThingRegistrationTaskReportsRequest
Source§fn default() -> ListThingRegistrationTaskReportsRequest
fn default() -> ListThingRegistrationTaskReportsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListThingRegistrationTaskReportsRequest
impl PartialEq for ListThingRegistrationTaskReportsRequest
Source§fn eq(&self, other: &ListThingRegistrationTaskReportsRequest) -> bool
fn eq(&self, other: &ListThingRegistrationTaskReportsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListThingRegistrationTaskReportsRequest
Auto Trait Implementations§
impl Freeze for ListThingRegistrationTaskReportsRequest
impl RefUnwindSafe for ListThingRegistrationTaskReportsRequest
impl Send for ListThingRegistrationTaskReportsRequest
impl Sync for ListThingRegistrationTaskReportsRequest
impl Unpin for ListThingRegistrationTaskReportsRequest
impl UnwindSafe for ListThingRegistrationTaskReportsRequest
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