Trait EditMessageReplyMarkupInlineSetters

Source
pub trait EditMessageReplyMarkupInlineSetters: HasPayload<Payload = EditMessageReplyMarkupInline> + Sized {
    // Provided methods
    fn inline_message_id<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn reply_markup(self, value: InlineKeyboardMarkup) -> Self { ... }
}
Expand description

Setters for fields of EditMessageReplyMarkupInline

Provided Methods§

Source

fn inline_message_id<T>(self, value: T) -> Self
where T: Into<String>,

Setter for inline_message_id field.

Source

fn reply_markup(self, value: InlineKeyboardMarkup) -> Self

Setter for reply_markup field.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§