Struct harmony_rust_sdk::client::api::chat::message::SendMessage[][src]

pub struct SendMessage { /* fields omitted */ }

Convenience type to create a valid SendMessageRequest.

Implementations

impl SendMessage[src]

pub fn new(guild_id: u64, channel_id: u64, content: String) -> Self[src]

Constructs a new SendMessage.

Trait Implementations

impl Clone for SendMessage[src]

impl Debug for SendMessage[src]

impl From<SendMessage> for SendMessageRequest[src]

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.

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>,