pub struct ListThingGroupsRequest {
pub max_results: Option<i64>,
pub name_prefix_filter: Option<String>,
pub next_token: Option<String>,
pub parent_group: Option<String>,
pub recursive: Option<bool>,
}Fields§
§max_results: Option<i64>The maximum number of results to return at one time.
name_prefix_filter: Option<String>A filter that limits the results to those with the specified name prefix.
next_token: Option<String>The token to retrieve the next set of results.
parent_group: Option<String>A filter that limits the results to those with the specified parent group.
recursive: Option<bool>If true, return child groups as well.
Trait Implementations§
Source§impl Clone for ListThingGroupsRequest
impl Clone for ListThingGroupsRequest
Source§fn clone(&self) -> ListThingGroupsRequest
fn clone(&self) -> ListThingGroupsRequest
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 ListThingGroupsRequest
impl Debug for ListThingGroupsRequest
Source§impl Default for ListThingGroupsRequest
impl Default for ListThingGroupsRequest
Source§fn default() -> ListThingGroupsRequest
fn default() -> ListThingGroupsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListThingGroupsRequest
impl PartialEq for ListThingGroupsRequest
Source§impl Serialize for ListThingGroupsRequest
impl Serialize for ListThingGroupsRequest
impl StructuralPartialEq for ListThingGroupsRequest
Auto Trait Implementations§
impl Freeze for ListThingGroupsRequest
impl RefUnwindSafe for ListThingGroupsRequest
impl Send for ListThingGroupsRequest
impl Sync for ListThingGroupsRequest
impl Unpin for ListThingGroupsRequest
impl UnwindSafe for ListThingGroupsRequest
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