Struct teloxide_core::payloads::BanChatSenderChat
source · pub struct BanChatSenderChat {
pub chat_id: Recipient,
pub sender_chat_id: ChatId,
}
Expand description
Use this method to ban a channel chat in a supergroup or a channel. The owner of the chat will not be able to send messages and join live streams on behalf of the chat, unless it is unbanned first. The bot must be an administrator in the supergroup or channel for this to work and must have the appropriate administrator rights.
Fields§
§chat_id: Recipient
Unique identifier for the target chat or username of the target channel (in the format @channelusername
)
sender_chat_id: ChatId
Unique identifier of the target sender chat
Implementations§
Trait Implementations§
source§impl Clone for BanChatSenderChat
impl Clone for BanChatSenderChat
source§impl Debug for BanChatSenderChat
impl Debug for BanChatSenderChat
source§impl Hash for BanChatSenderChat
impl Hash for BanChatSenderChat
source§impl PartialEq<BanChatSenderChat> for BanChatSenderChat
impl PartialEq<BanChatSenderChat> for BanChatSenderChat
source§fn eq(&self, other: &BanChatSenderChat) -> bool
fn eq(&self, other: &BanChatSenderChat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for BanChatSenderChat
impl Payload for BanChatSenderChat
source§fn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g.
GetUpdates
with
big timeout
), the minimum timeout that should be used.source§impl Serialize for BanChatSenderChat
impl Serialize for BanChatSenderChat
impl Eq for BanChatSenderChat
impl StructuralEq for BanChatSenderChat
impl StructuralPartialEq for BanChatSenderChat
Auto Trait Implementations§
impl RefUnwindSafe for BanChatSenderChat
impl Send for BanChatSenderChat
impl Sync for BanChatSenderChat
impl Unpin for BanChatSenderChat
impl UnwindSafe for BanChatSenderChat
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.