pub struct ListThingsInThingGroupRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub recursive: Option<bool>,
pub thing_group_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.
recursive: Option<bool>When true, list things in this thing group and in all child groups as well.
thing_group_name: StringThe thing group name.
Trait Implementations§
Source§impl Clone for ListThingsInThingGroupRequest
impl Clone for ListThingsInThingGroupRequest
Source§fn clone(&self) -> ListThingsInThingGroupRequest
fn clone(&self) -> ListThingsInThingGroupRequest
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 ListThingsInThingGroupRequest
impl Default for ListThingsInThingGroupRequest
Source§fn default() -> ListThingsInThingGroupRequest
fn default() -> ListThingsInThingGroupRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListThingsInThingGroupRequest
impl PartialEq for ListThingsInThingGroupRequest
Source§fn eq(&self, other: &ListThingsInThingGroupRequest) -> bool
fn eq(&self, other: &ListThingsInThingGroupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListThingsInThingGroupRequest
Auto Trait Implementations§
impl Freeze for ListThingsInThingGroupRequest
impl RefUnwindSafe for ListThingsInThingGroupRequest
impl Send for ListThingsInThingGroupRequest
impl Sync for ListThingsInThingGroupRequest
impl Unpin for ListThingsInThingGroupRequest
impl UnwindSafe for ListThingsInThingGroupRequest
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