Struct tg_bot_models::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

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

Optional. 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

impl Clone for InputTextMessageContent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InputTextMessageContent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for InputTextMessageContent
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations