Struct actix_telegram::types::InputTextMessageContent[][src]

pub struct InputTextMessageContent {
    pub message_text: String,
    pub parse_mode: Option<String>,
    pub disable_web_page_preview: Option<bool>,
}

Represents the content of a text message to be sent as the result of an inline query.

Fields

Text of the message to be sent, 1-4096 characters

Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message.

Disables link previews for links in the sent message

Trait Implementations

impl Debug for InputTextMessageContent
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations