Struct harmony_rust_sdk::api::chat::v1::event::MessageUpdated[][src]

pub struct MessageUpdated {
    pub guild_id: u64,
    pub channel_id: u64,
    pub message_id: u64,
    pub edited_at: Option<Timestamp>,
    pub content: String,
    pub update_content: bool,
    pub embeds: Vec<Embed>,
    pub update_embeds: bool,
    pub actions: Vec<Action>,
    pub update_actions: bool,
    pub attachments: Vec<Attachment>,
    pub update_attachments: bool,
    pub overrides: Option<Override>,
    pub update_overrides: bool,
    pub metadata: Option<Metadata>,
    pub update_metadata: bool,
}

Fields

guild_id: u64channel_id: u64message_id: u64edited_at: Option<Timestamp>content: Stringupdate_content: boolembeds: Vec<Embed>update_embeds: boolactions: Vec<Action>update_actions: boolattachments: Vec<Attachment>update_attachments: booloverrides: Option<Override>update_overrides: boolmetadata: Option<Metadata>update_metadata: bool

Trait Implementations

impl Clone for MessageUpdated[src]

impl Debug for MessageUpdated[src]

impl Default for MessageUpdated[src]

impl Message for MessageUpdated[src]

impl PartialEq<MessageUpdated> for MessageUpdated[src]

impl StructuralPartialEq for MessageUpdated[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> 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> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,