pub trait EditMessageCaptionSetters: HasPayload<Payload = EditMessageCaption> + Sized {
// Provided methods
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.
Setter for caption
field.
sourcefn parse_mode(self, value: ParseMode) -> Self
fn parse_mode(self, value: ParseMode) -> Self
Setter for parse_mode
field.
Setter for caption_entities
field.
sourcefn reply_markup(self, value: InlineKeyboardMarkup) -> Self
fn reply_markup(self, value: InlineKeyboardMarkup) -> Self
Setter for reply_markup
field.