Struct noob::events::ReceivedMessage[][src]

pub struct ReceivedMessage {
    pub id: Snowflake,
    pub channel_id: Snowflake,
    pub content: String,
    pub tts: bool,
    pub author: User,
    // some fields omitted
}

Message received from a channel

Fields

Message ID

ID of the origin channel

Text content of the message

Whether this is a TTS message

Author of the message

Trait Implementations

impl Debug for ReceivedMessage
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations