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