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: RecipientUnique identifier for the target chat or username of the target channel (in the format @channelusername).
message_id: MessageIdIdentifier of the message to edit
caption: Option<String>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.
caption_entities: Option<Vec<MessageEntity>>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
sourceimpl Clone for EditMessageCaption
impl Clone for EditMessageCaption
sourcefn clone(&self) -> EditMessageCaptionⓘNotable traits for EditMessageCaptionimpl Payload for EditMessageCaption type Output = Message;
fn clone(&self) -> EditMessageCaptionⓘNotable traits for EditMessageCaptionimpl Payload for EditMessageCaption type Output = Message;
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for EditMessageCaption
impl Debug for EditMessageCaption
sourceimpl Hash for EditMessageCaption
impl Hash for EditMessageCaption
sourceimpl PartialEq<EditMessageCaption> for EditMessageCaption
impl PartialEq<EditMessageCaption> for EditMessageCaption
sourcefn eq(&self, other: &EditMessageCaption) -> bool
fn eq(&self, other: &EditMessageCaption) -> bool
sourceimpl Payload for EditMessageCaption
impl Payload for EditMessageCaption
sourcefn 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. Read moresourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.