pub struct ListThingRegistrationTaskReportsResponse {
pub next_token: Option<String>,
pub report_type: Option<String>,
pub resource_links: 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.
report_type: Option<String>The type of task report.
resource_links: Option<Vec<String>>Links to the task resources.
Trait Implementations§
Source§impl Clone for ListThingRegistrationTaskReportsResponse
impl Clone for ListThingRegistrationTaskReportsResponse
Source§fn clone(&self) -> ListThingRegistrationTaskReportsResponse
fn clone(&self) -> ListThingRegistrationTaskReportsResponse
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 ListThingRegistrationTaskReportsResponse
impl Default for ListThingRegistrationTaskReportsResponse
Source§fn default() -> ListThingRegistrationTaskReportsResponse
fn default() -> ListThingRegistrationTaskReportsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListThingRegistrationTaskReportsResponse
impl<'de> Deserialize<'de> for ListThingRegistrationTaskReportsResponse
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 ListThingRegistrationTaskReportsResponse
impl PartialEq for ListThingRegistrationTaskReportsResponse
Source§fn eq(&self, other: &ListThingRegistrationTaskReportsResponse) -> bool
fn eq(&self, other: &ListThingRegistrationTaskReportsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListThingRegistrationTaskReportsResponse
Auto Trait Implementations§
impl Freeze for ListThingRegistrationTaskReportsResponse
impl RefUnwindSafe for ListThingRegistrationTaskReportsResponse
impl Send for ListThingRegistrationTaskReportsResponse
impl Sync for ListThingRegistrationTaskReportsResponse
impl Unpin for ListThingRegistrationTaskReportsResponse
impl UnwindSafe for ListThingRegistrationTaskReportsResponse
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