[][src]Struct rusoto_iot::ListThingGroupsRequest

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

impl Clone for ListThingGroupsRequest[src]

impl Default for ListThingGroupsRequest[src]

impl PartialEq<ListThingGroupsRequest> for ListThingGroupsRequest[src]

impl Debug for ListThingGroupsRequest[src]

impl StructuralPartialEq for ListThingGroupsRequest[src]

impl Serialize for ListThingGroupsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self