[][src]Struct rusoto_detective::ListMembersResponse

pub struct ListMembersResponse {
    pub member_details: Option<Vec<MemberDetail>>,
    pub next_token: Option<String>,
}

Fields

member_details: Option<Vec<MemberDetail>>

The list of member accounts in the behavior graph.

The results include member accounts that did not pass verification and member accounts that have not yet accepted the invitation to the behavior graph. The results do not include member accounts that were removed from the behavior graph.

next_token: Option<String>

If there are more member accounts remaining in the results, then this is the pagination token to use to request the next page of member accounts.

Trait Implementations

impl Clone for ListMembersResponse[src]

impl Debug for ListMembersResponse[src]

impl Default for ListMembersResponse[src]

impl<'de> Deserialize<'de> for ListMembersResponse[src]

impl PartialEq<ListMembersResponse> for ListMembersResponse[src]

impl StructuralPartialEq for ListMembersResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.