Struct tg_bot_models::EditMessageCaption[][src]

pub struct EditMessageCaption {
    pub chat_id: Option<PolymorphChatId>,
    pub message_id: Option<i64>,
    pub inline_message_id: Option<String>,
    pub caption: Option<String>,
    pub parse_mode: Option<String>,
    pub reply_markup: Option<InlineKeyboardMarkup>,
}

Use this method to edit captions of messages sent by the bot or via the bot (for inline bots). On success, if edited message is sent by the bot, the edited Message is returned, otherwise True is returned.

Fields

Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)

Required if inline_message_id is not specified. Identifier of the sent message

Required if chat_id and message_id are not specified. Identifier of the inline message

New caption of the message

Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.

A JSON-serialized object for an inline keyboard.

Trait Implementations

impl Debug for EditMessageCaption
[src]

Formats the value using the given formatter. Read more

impl Clone for EditMessageCaption
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EditMessageCaption
[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 EditMessageCaption
[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