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