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