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

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

Builder trait for #name.

Required methods

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

Set the guild_id field of this struct.

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

Set the channel_id field of this struct.

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

Set the content field of this struct.

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

Set the echo_id field of this struct.

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

Set the in_reply_to field of this struct.

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

Set the embeds field of this struct.

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

Set the actions field of this struct.

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

Set the attachments field of this struct.

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

Set the overrides field of this struct.

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]

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

Set the guild_id field of this struct.

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

Set the channel_id field of this struct.

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

Set the content field of this struct.

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

Set the echo_id field of this struct.

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

Set the in_reply_to field of this struct.

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

Set the embeds field of this struct.

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

Set the actions field of this struct.

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

Set the attachments field of this struct.

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

Set the overrides field of this struct.

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

Set the metadata field of this struct.

Loading content...