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