Trait CanSendMessage
telegram_bot::types::requests
pub trait CanSendMessage { pub fn text<'s, T>(&self, text: T) -> SendMessage<'s> where T: Into<Cow<'s, str>>; }
Send text message.
pub fn text<'s, T>(&self, text: T) -> SendMessage<'s> where T: Into<Cow<'s, str>>,
impl<C> CanSendMessage for C where C: ToChatRef,