[][src]Struct rusoto_chime::ChannelMessageSummary

pub struct ChannelMessageSummary {
    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 redacted: Option<bool>,
    pub sender: Option<Identity>,
    pub type_: Option<String>,
}

A summary of the messages in a channel.

Fields

content: Option<String>

The content of the message summary.

created_timestamp: Option<f64>

The time at which the message summary was created.

last_edited_timestamp: Option<f64>last_updated_timestamp: Option<f64>message_id: Option<String>

The ID of the message summary.

metadata: Option<String>

The metadata of the message summary.

redacted: Option<bool>

Redacts the content of a message summary.

sender: Option<Identity>

The sender of the message summary.

type_: Option<String>

The type of message summary.

Trait Implementations

impl Clone for ChannelMessageSummary[src]

impl Debug for ChannelMessageSummary[src]

impl Default for ChannelMessageSummary[src]

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

impl PartialEq<ChannelMessageSummary> for ChannelMessageSummary[src]

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