[][src]Struct telegram_bot_raw::requests::edit_message_reply_markup::EditMessageReplyMarkup

#[must_use = "requests do nothing unless sent"]pub struct EditMessageReplyMarkup { /* fields omitted */ }

Use this method to edit only the reply markup of messages sent by the bot.

Implementations

impl EditMessageReplyMarkup[src]

pub fn new<C, M, R>(chat: C, message_id: M, reply_markup: Option<R>) -> Self where
    C: ToChatRef,
    M: ToMessageId,
    R: Into<ReplyMarkup>, 
[src]

Trait Implementations

impl Clone for EditMessageReplyMarkup[src]

impl Debug for EditMessageReplyMarkup[src]

impl PartialEq<EditMessageReplyMarkup> for EditMessageReplyMarkup[src]

impl PartialOrd<EditMessageReplyMarkup> for EditMessageReplyMarkup[src]

impl Request for EditMessageReplyMarkup[src]

impl Serialize for EditMessageReplyMarkup[src]

impl StructuralPartialEq 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.