[][src]Struct telegram_bot::types::requests::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
) -> EditMessageCaption<'s> where
    C: ToChatRef,
    T: Into<Cow<'s, str>>,
    M: ToMessageId
[src]

pub fn reply_markup<R>(
    &mut self,
    reply_markup: R
) -> &mut EditMessageCaption<'s> 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>[src]

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

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

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

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

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> Instrument for T[src]

impl<T> Instrument 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]