[][src]Struct rusoto_chime::ChannelMembership

pub struct ChannelMembership {
    pub channel_arn: Option<String>,
    pub created_timestamp: Option<f64>,
    pub invited_by: Option<Identity>,
    pub last_updated_timestamp: Option<f64>,
    pub member: Option<Identity>,
    pub type_: Option<String>,
}

Creates a channel member.

Fields

channel_arn: Option<String>

The ARN of the member's channel.

created_timestamp: Option<f64>

The time at which the channel membership was created.

invited_by: Option<Identity>

The identifier of the member who invited another member. Taken from the message header.

last_updated_timestamp: Option<f64>

The time at which a channel membership was last updated.

member: Option<Identity>

The data of the channel member.

type_: Option<String>

The membership type set for the channel member.

Trait Implementations

impl Clone for ChannelMembership[src]

impl Debug for ChannelMembership[src]

impl Default for ChannelMembership[src]

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

impl PartialEq<ChannelMembership> for ChannelMembership[src]

impl StructuralPartialEq for ChannelMembership[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, 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.