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 = <Vec<MessageEntity, Global> as IntoIterator>::Item>
, { ... } fn reply_markup(self, value: InlineKeyboardMarkup) -> Self { ... } }
Expand description

Setters for fields of EditMessageCaption

Provided Methods§

Setter for chat_id field.

Setter for message_id field.

Setter for caption field.

Setter for parse_mode field.

Setter for caption_entities field.

Setter for reply_markup field.

Implementors§