[][src]Struct rusoto_chime::Channel

pub struct Channel {
    pub channel_arn: Option<String>,
    pub created_by: Option<Identity>,
    pub created_timestamp: Option<f64>,
    pub last_message_timestamp: Option<f64>,
    pub last_updated_timestamp: Option<f64>,
    pub metadata: Option<String>,
    pub mode: Option<String>,
    pub name: Option<String>,
    pub privacy: Option<String>,
}

Creates a channel.

Fields

channel_arn: Option<String>

The ARN of the channel.

created_by: Option<Identity>

The administrator who created the channel.

created_timestamp: Option<f64>

The time at which the administrator created the channel.

last_message_timestamp: Option<f64>

The time at which a member sent the last message in a session.

last_updated_timestamp: Option<f64>

The time at which a channel was last updated.

metadata: Option<String>

The metadata of the channel.

mode: Option<String>

The mode of the channel.

name: Option<String>

The name of the channel.

privacy: Option<String>

The channel's privacy setting, PUBLIC or HIDDEN.

Trait Implementations

impl Clone for Channel[src]

impl Debug for Channel[src]

impl Default for Channel[src]

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

impl PartialEq<Channel> for Channel[src]

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