pub struct ListThingGroupsResponse {
pub next_token: Option<String>,
pub thing_groups: Option<Vec<GroupNameAndArn>>,
}Fields§
§next_token: Option<String>The token used to get the next set of results, or null if there are no additional results.
thing_groups: Option<Vec<GroupNameAndArn>>The thing groups.
Trait Implementations§
Source§impl Clone for ListThingGroupsResponse
impl Clone for ListThingGroupsResponse
Source§fn clone(&self) -> ListThingGroupsResponse
fn clone(&self) -> ListThingGroupsResponse
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 Debug for ListThingGroupsResponse
impl Debug for ListThingGroupsResponse
Source§impl Default for ListThingGroupsResponse
impl Default for ListThingGroupsResponse
Source§fn default() -> ListThingGroupsResponse
fn default() -> ListThingGroupsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListThingGroupsResponse
impl<'de> Deserialize<'de> for ListThingGroupsResponse
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 ListThingGroupsResponse
impl PartialEq for ListThingGroupsResponse
impl StructuralPartialEq for ListThingGroupsResponse
Auto Trait Implementations§
impl Freeze for ListThingGroupsResponse
impl RefUnwindSafe for ListThingGroupsResponse
impl Send for ListThingGroupsResponse
impl Sync for ListThingGroupsResponse
impl Unpin for ListThingGroupsResponse
impl UnwindSafe for ListThingGroupsResponse
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