Trait CanGetChat

Source
pub trait CanGetChat {
    // Required method
    fn get_chat(&self) -> GetChat;
}
Expand description

Get up to date information about the chat.

Required Methods§

Source

fn get_chat(&self) -> GetChat

Implementors§

Source§

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