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

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 Debug for SendMessage[src]

impl Into<SendMessageRequest> for SendMessage[src]

impl IntoRequest<SendMessageRequest> for SendMessage[src]

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.

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

impl<T> WithSubscriber for T[src]