pub trait CanEditMessageReplyMarkup {
    fn edit_reply_markup<R>(
        &self,
        reply_markup: Option<R>
    ) -> EditMessageReplyMarkup
    where
        R: Into<ReplyMarkup>
; }
Expand description

Edit reply markup of messages sent by the bot.

Required Methods§

Implementors§