pub trait CanEditMessageCaption {
    fn edit_caption<'s, T>(&self, caption: T) -> EditMessageCaption<'s>
    where
        T: Into<Cow<'s, str>>
; }
Expand description

Edit captions of messages sent by the bot.

Required Methods§

Implementors§