[][src]Struct tgbot::methods::EditMessageReplyMarkup

pub struct EditMessageReplyMarkup { /* fields omitted */ }

Edit only the reply markup of messages sent by the bot or via the bot (for inline bots)

Methods

impl EditMessageReplyMarkup[src]

pub fn new<C: Into<ChatId>>(chat_id: C, message_id: Integer) -> Self[src]

Creates a new EditMessageReplyMarkup

Arguments

  • chat_id - Unique identifier for the target chat
  • message_id - Identifier of the sent message

pub fn with_inline_message_id<S: Into<String>>(inline_message_id: S) -> Self[src]

Creates a new EditMessageReplyMarkup

Arguments

  • inline_message_id - Identifier of the inline message

pub fn reply_markup<I: Into<InlineKeyboardMarkup>>(
    self,
    reply_markup: I
) -> Self
[src]

Inline keyboard

Trait Implementations

impl Clone for EditMessageReplyMarkup[src]

impl Debug for EditMessageReplyMarkup[src]

impl Method for EditMessageReplyMarkup[src]

type Response = EditMessageResult

Type of successful result in API response

impl Serialize for EditMessageReplyMarkup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.