Struct teloxide_core::payloads::EditMessageCaption
source · pub struct EditMessageCaption {
pub chat_id: Recipient,
pub message_id: MessageId,
pub caption: Option<String>,
pub parse_mode: Option<ParseMode>,
pub caption_entities: Option<Vec<MessageEntity>>,
pub reply_markup: Option<InlineKeyboardMarkup>,
}
Expand description
Use this method to edit captions of messages. On success, the edited Message is returned.
See also: EditMessageCaptionInline
Fields§
§chat_id: Recipient
Unique identifier for the target chat or username of the target channel (in the format @channelusername
).
message_id: MessageId
Identifier of the message to edit
New caption of the message, 0-1024 characters after entities parsing
parse_mode: Option<ParseMode>
Mode for parsing entities in the message text. See formatting options for more details.
List of special entities that appear in the caption, which can be specified instead of parse_mode
reply_markup: Option<InlineKeyboardMarkup>
A JSON-serialized object for an inline keyboard.
Implementations§
Trait Implementations§
source§impl Clone for EditMessageCaption
impl Clone for EditMessageCaption
source§impl Debug for EditMessageCaption
impl Debug for EditMessageCaption
source§impl Hash for EditMessageCaption
impl Hash for EditMessageCaption
source§impl PartialEq<EditMessageCaption> for EditMessageCaption
impl PartialEq<EditMessageCaption> for EditMessageCaption
source§fn eq(&self, other: &EditMessageCaption) -> bool
fn eq(&self, other: &EditMessageCaption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for EditMessageCaption
impl Payload for EditMessageCaption
source§fn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g.
GetUpdates
with
big timeout
), the minimum timeout that should be used.source§impl Serialize for EditMessageCaption
impl Serialize for EditMessageCaption
impl Eq for EditMessageCaption
impl StructuralEq for EditMessageCaption
impl StructuralPartialEq for EditMessageCaption
Auto Trait Implementations§
impl RefUnwindSafe for EditMessageCaption
impl Send for EditMessageCaption
impl Sync for EditMessageCaption
impl Unpin for EditMessageCaption
impl UnwindSafe for EditMessageCaption
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.