pub trait CanGetChatMemberForChat {
// Required method
fn get_member<O>(&self, other: O) -> GetChatMember
where O: ToUserId;
}Expand description
Get information about a member of a chat.
Required Methods§
fn get_member<O>(&self, other: O) -> GetChatMemberwhere
O: ToUserId,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.