[][src]Struct rusoto_chime::ChannelMessage

pub struct ChannelMessage {
    pub channel_arn: Option<String>,
    pub content: Option<String>,
    pub created_timestamp: Option<f64>,
    pub last_edited_timestamp: Option<f64>,
    pub last_updated_timestamp: Option<f64>,
    pub message_id: Option<String>,
    pub metadata: Option<String>,
    pub persistence: Option<String>,
    pub redacted: Option<bool>,
    pub sender: Option<Identity>,
    pub type_: Option<String>,
}

Creates a message in a channel.

Fields

channel_arn: Option<String>

The ARN of the channel.

content: Option<String>

The message content.

created_timestamp: Option<f64>

The time at which the message was created.

last_edited_timestamp: Option<f64>

The time at which a message was edited.

last_updated_timestamp: Option<f64>

The time at which a message was updated.

message_id: Option<String>

The ID of a message.

metadata: Option<String>

The message metadata.

persistence: Option<String>redacted: Option<bool>

Hides the content of a message. The message still exists on the back end, but this action only returns metadata.

sender: Option<Identity>

The message sender.

type_: Option<String>

The message type.

Trait Implementations

impl Clone for ChannelMessage[src]

impl Debug for ChannelMessage[src]

impl Default for ChannelMessage[src]

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

impl PartialEq<ChannelMessage> for ChannelMessage[src]

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