[][src]Struct rusoto_chime::ListChannelMembershipsRequest

pub struct ListChannelMembershipsRequest {
    pub channel_arn: String,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub type_: Option<String>,
}

Fields

channel_arn: String

The maximum number of channel memberships that you want returned.

max_results: Option<i64>

The maximum number of channel memberships that you want returned.

next_token: Option<String>

The token passed by previous API calls until all requested channel memberships are returned..

type_: Option<String>

The membership type of a user, DEFAULT or HIDDEN. Default members are always returned as part of ListChannelMemberships. Hidden members are only returned if the type filter in ListChannelMemberships equals HIDDEN. Otherwise hidden members are not returned.

Trait Implementations

impl Clone for ListChannelMembershipsRequest[src]

impl Debug for ListChannelMembershipsRequest[src]

impl Default for ListChannelMembershipsRequest[src]

impl PartialEq<ListChannelMembershipsRequest> for ListChannelMembershipsRequest[src]

impl Serialize for ListChannelMembershipsRequest[src]

impl StructuralPartialEq for ListChannelMembershipsRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.