Trait CanEditMessageReplyMarkup

Source
pub trait CanEditMessageReplyMarkup {
    // Required method
    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§

Source

fn edit_reply_markup<R>( &self, reply_markup: Option<R>, ) -> EditMessageReplyMarkup
where R: Into<ReplyMarkup>,

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§