[][src]Struct telegram_bot_raw::requests::edit_message_caption::EditMessageCaption

#[must_use = "requests do nothing unless sent"]pub struct EditMessageCaption<'s> { /* fields omitted */ }

Use this method to edit captions of messages sent by the bot.

Implementations

impl<'s> EditMessageCaption<'s>[src]

pub fn new<C, M, T>(chat: C, message_id: M, caption: T) -> Self where
    C: ToChatRef,
    M: ToMessageId,
    T: Into<Cow<'s, str>>, 
[src]

pub fn reply_markup<R>(&mut self, reply_markup: R) -> &mut Self where
    R: Into<ReplyMarkup>, 
[src]

Trait Implementations

impl<'s> Clone for EditMessageCaption<'s>[src]

impl<'s> Debug for EditMessageCaption<'s>[src]

impl<'s> PartialEq<EditMessageCaption<'s>> for EditMessageCaption<'s>[src]

impl<'s> PartialOrd<EditMessageCaption<'s>> for EditMessageCaption<'s>[src]

impl<'s> Request for EditMessageCaption<'s>[src]

impl<'s> Serialize for EditMessageCaption<'s>[src]

impl<'s> StructuralPartialEq for EditMessageCaption<'s>[src]

Auto Trait Implementations

impl<'s> RefUnwindSafe for EditMessageCaption<'s>

impl<'s> Send for EditMessageCaption<'s>

impl<'s> Sync for EditMessageCaption<'s>

impl<'s> Unpin for EditMessageCaption<'s>

impl<'s> UnwindSafe for EditMessageCaption<'s>

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.