Trait CanSendChatAction

Source
pub trait CanSendChatAction {
    // Required method
    fn chat_action(&self, action: ChatAction) -> SendChatAction;
}
Expand description

Send action to a chat.

Required Methods§

Implementors§

Source§

impl<C> CanSendChatAction for C
where C: ToChatRef,