Struct tg_bot_models::EditMessageMedia[][src]

pub struct EditMessageMedia {
    pub chat_id: Option<PolymorphChatId>,
    pub message_id: Option<i64>,
    pub inline_message_id: Option<String>,
    pub media: InputMedia,
    pub reply_markup: Option<InlineKeyboardMarkup>,
}

Use this method to edit audio, document, photo, or video messages. If a message is a part of a message album, then it can be edited only to a photo or a video. Otherwise, message type can be changed arbitrarily. When inline message is edited, new file can't be uploaded. Use previously uploaded file via its file_id or specify a URL. On success, if the edited message was 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

A JSON-serialized object for a new media content of the message

A JSON-serialized object for a new inline keyboard.

Trait Implementations

impl Debug for EditMessageMedia
[src]

Formats the value using the given formatter. Read more

impl Clone for EditMessageMedia
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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