Skip to main content

CanGetChat

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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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