Struct teloxide::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, Global>>,
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, Global>>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
sourceimpl EditMessageCaption
impl EditMessageCaption
pub fn new(
chat_id: impl Into<Recipient>,
message_id: MessageId
) -> EditMessageCaptionⓘNotable traits for EditMessageCaptionimpl Payload for EditMessageCaption type Output = Message;
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
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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<P> EditMessageCaptionSetters for Pwhere
P: HasPayload<Payload = EditMessageCaption>,
impl<P> EditMessageCaptionSetters for Pwhere
P: HasPayload<Payload = EditMessageCaption>,
sourcefn message_id(self, value: MessageId) -> Self
fn message_id(self, value: MessageId) -> Self
Setter for
message_id field.sourcefn parse_mode(self, value: ParseMode) -> Self
fn parse_mode(self, value: ParseMode) -> Self
Setter for
parse_mode field.sourcefn caption_entities<T>(self, value: T) -> Selfwhere
T: IntoIterator<Item = <Vec<MessageEntity, Global> as IntoIterator>::Item>,
fn caption_entities<T>(self, value: T) -> Selfwhere
T: IntoIterator<Item = <Vec<MessageEntity, Global> as IntoIterator>::Item>,
Setter for
caption_entities field.sourcefn reply_markup(self, value: InlineKeyboardMarkup) -> Self
fn reply_markup(self, value: InlineKeyboardMarkup) -> Self
Setter for
reply_markup field.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.impl<T> Erasable for T
impl<T> Erasable for T
sourceimpl<P> HasPayload for Pwhere
P: Payload,
impl<P> HasPayload for Pwhere
P: Payload,
type Payload = P
type Payload = P
The type of the payload contained.
sourcefn payload_mut(&mut self) -> &mut <P as HasPayload>::Payload
fn payload_mut(&mut self) -> &mut <P as HasPayload>::Payload
Gain mutable access to the underlying payload.
sourcefn payload_ref(&self) -> &<P as HasPayload>::Payload
fn payload_ref(&self) -> &<P as HasPayload>::Payload
Gain immutable access to the underlying payload.
sourcefn with_payload_mut<F>(self, f: F) -> Selfwhere
F: FnOnce(&mut Self::Payload),
fn with_payload_mut<F>(self, f: F) -> Selfwhere
F: FnOnce(&mut Self::Payload),
Update payload with a function