pub trait EditMessageCaptionSetters: HasPayload<Payload = EditMessageCaption> + Sized {
fn chat_id<T>(self, value: T) -> Self
where
T: Into<Recipient>,
{ ... }
fn message_id(self, value: MessageId) -> Self { ... }
fn caption<T>(self, value: T) -> Self
where
T: Into<String>,
{ ... }
fn parse_mode(self, value: ParseMode) -> Self { ... }
fn caption_entities<T>(self, value: T) -> Self
where
T: IntoIterator<Item = MessageEntity>,
{ ... }
fn reply_markup(self, value: InlineKeyboardMarkup) -> Self { ... }
}Expand description
Setters for fields of EditMessageCaption
Provided Methods
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 = MessageEntity>,
fn caption_entities<T>(self, value: T) -> Selfwhere
T: IntoIterator<Item = MessageEntity>,
Setter for caption_entities field.
sourcefn reply_markup(self, value: InlineKeyboardMarkup) -> Self
fn reply_markup(self, value: InlineKeyboardMarkup) -> Self
Setter for reply_markup field.
