pub trait CanUnbanChatMemberForChat {
// Required method
fn unban<O>(&self, other: O) -> UnbanChatMember
where O: ToUserId;
}Expand description
Unban a previously kicked user in a supergroup or channel.
Required Methods§
fn unban<O>(&self, other: O) -> UnbanChatMemberwhere
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.