[][src]Trait harmony_rust_sdk::client::api::chat::message::SendMessageSelfBuilder

pub trait SendMessageSelfBuilder {
    pub fn guild_id(self, guild_id: impl Into<u64>) -> Self;
pub fn channel_id(self, channel_id: impl Into<u64>) -> Self;
pub fn content(self, content: impl Into<String>) -> Self;
pub fn echo_id(self, echo_id: impl Into<u64>) -> Self;
pub fn in_reply_to(self, in_reply_to: impl Into<u64>) -> Self;
pub fn embeds(self, embeds: impl Into<Vec<Embed>>) -> Self;
pub fn actions(self, actions: impl Into<Vec<Action>>) -> Self;
pub fn attachments(self, attachments: impl Into<Hmcs>) -> Self;
pub fn overrides(self, overrides: impl Into<Option<Override>>) -> Self;
pub fn metadata(self, metadata: impl Into<Option<Metadata>>) -> Self; }

Builder trait for #name.

Required methods

pub fn guild_id(self, guild_id: impl Into<u64>) -> Self[src]

Set the guild_id field of this struct.

pub fn channel_id(self, channel_id: impl Into<u64>) -> Self[src]

Set the channel_id field of this struct.

pub fn content(self, content: impl Into<String>) -> Self[src]

Set the content field of this struct.

pub fn echo_id(self, echo_id: impl Into<u64>) -> Self[src]

Set the echo_id field of this struct.

pub fn in_reply_to(self, in_reply_to: impl Into<u64>) -> Self[src]

Set the in_reply_to field of this struct.

pub fn embeds(self, embeds: impl Into<Vec<Embed>>) -> Self[src]

Set the embeds field of this struct.

pub fn actions(self, actions: impl Into<Vec<Action>>) -> Self[src]

Set the actions field of this struct.

pub fn attachments(self, attachments: impl Into<Hmcs>) -> Self[src]

Set the attachments field of this struct.

pub fn overrides(self, overrides: impl Into<Option<Override>>) -> Self[src]

Set the overrides field of this struct.

pub fn metadata(self, metadata: impl Into<Option<Metadata>>) -> Self[src]

Set the metadata field of this struct.

Loading content...

Implementors

impl SendMessageSelfBuilder for SendMessage[src]

pub fn guild_id(self, guild_id: impl Into<u64>) -> Self[src]

Set the guild_id field of this struct.

pub fn channel_id(self, channel_id: impl Into<u64>) -> Self[src]

Set the channel_id field of this struct.

pub fn content(self, content: impl Into<String>) -> Self[src]

Set the content field of this struct.

pub fn echo_id(self, echo_id: impl Into<u64>) -> Self[src]

Set the echo_id field of this struct.

pub fn in_reply_to(self, in_reply_to: impl Into<u64>) -> Self[src]

Set the in_reply_to field of this struct.

pub fn embeds(self, embeds: impl Into<Vec<Embed>>) -> Self[src]

Set the embeds field of this struct.

pub fn actions(self, actions: impl Into<Vec<Action>>) -> Self[src]

Set the actions field of this struct.

pub fn attachments(self, attachments: impl Into<Hmcs>) -> Self[src]

Set the attachments field of this struct.

pub fn overrides(self, overrides: impl Into<Option<Override>>) -> Self[src]

Set the overrides field of this struct.

pub fn metadata(self, metadata: impl Into<Option<Metadata>>) -> Self[src]

Set the metadata field of this struct.

Loading content...