pub trait CanReplySendMessage {
    fn text_reply<'c, 's, T>(&self, text: T) -> SendMessage<'s>
    where
        T: Into<Cow<'s, str>>
; }
Expand description

Reply with text message.

Required Methods§

Implementors§