pub trait EditMessageCaptionInlineSetters: HasPayload<Payload = EditMessageCaptionInline> + Sized {
    fn inline_message_id<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } 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 EditMessageCaptionInline

Provided Methods§

Setter for inline_message_id field.

Setter for caption field.

Setter for parse_mode field.

Setter for caption_entities field.

Setter for reply_markup field.

Implementors§