pub trait SendMessageSetters: HasPayload<Payload = SendMessage> + Sized {
    // Provided methods
    fn chat_id<T>(self, value: T) -> Self
       where T: Into<Recipient> { ... }
    fn text<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn message_thread_id(self, value: i32) -> Self { ... }
    fn parse_mode(self, value: ParseMode) -> Self { ... }
    fn entities<T>(self, value: T) -> Self
       where T: IntoIterator<Item = MessageEntity> { ... }
    fn disable_web_page_preview(self, value: bool) -> Self { ... }
    fn disable_notification(self, value: bool) -> Self { ... }
    fn protect_content(self, value: bool) -> Self { ... }
    fn reply_to_message_id(self, value: MessageId) -> Self { ... }
    fn allow_sending_without_reply(self, value: bool) -> Self { ... }
    fn reply_markup<T>(self, value: T) -> Self
       where T: Into<ReplyMarkup> { ... }
}
Expand description

Setters for fields of SendMessage

Provided Methods§

source

fn chat_id<T>(self, value: T) -> Selfwhere T: Into<Recipient>,

Setter for chat_id field.

source

fn text<T>(self, value: T) -> Selfwhere T: Into<String>,

Setter for text field.

source

fn message_thread_id(self, value: i32) -> Self

Setter for message_thread_id field.

source

fn parse_mode(self, value: ParseMode) -> Self

Setter for parse_mode field.

source

fn entities<T>(self, value: T) -> Selfwhere T: IntoIterator<Item = MessageEntity>,

Setter for entities field.

source

fn disable_web_page_preview(self, value: bool) -> Self

Setter for disable_web_page_preview field.

source

fn disable_notification(self, value: bool) -> Self

Setter for disable_notification field.

source

fn protect_content(self, value: bool) -> Self

Setter for protect_content field.

source

fn reply_to_message_id(self, value: MessageId) -> Self

Setter for reply_to_message_id field.

source

fn allow_sending_without_reply(self, value: bool) -> Self

Setter for allow_sending_without_reply field.

source

fn reply_markup<T>(self, value: T) -> Selfwhere T: Into<ReplyMarkup>,

Setter for reply_markup field.

Implementors§

source§

impl<P> SendMessageSetters for Pwhere P: HasPayload<Payload = SendMessage>,