Struct teloxide_core::payloads::UnbanChatSenderChat
source · pub struct UnbanChatSenderChat {
pub chat_id: Recipient,
pub sender_chat_id: ChatId,
}
Expand description
Use this method to unban a previously banned channel chat in a supergroup or channel. The bot must be an administrator 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 UnbanChatSenderChat
impl Clone for UnbanChatSenderChat
source§impl Debug for UnbanChatSenderChat
impl Debug for UnbanChatSenderChat
source§impl Hash for UnbanChatSenderChat
impl Hash for UnbanChatSenderChat
source§impl PartialEq<UnbanChatSenderChat> for UnbanChatSenderChat
impl PartialEq<UnbanChatSenderChat> for UnbanChatSenderChat
source§fn eq(&self, other: &UnbanChatSenderChat) -> bool
fn eq(&self, other: &UnbanChatSenderChat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for UnbanChatSenderChat
impl Payload for UnbanChatSenderChat
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 UnbanChatSenderChat
impl Serialize for UnbanChatSenderChat
impl Eq for UnbanChatSenderChat
impl StructuralEq for UnbanChatSenderChat
impl StructuralPartialEq for UnbanChatSenderChat
Auto Trait Implementations§
impl RefUnwindSafe for UnbanChatSenderChat
impl Send for UnbanChatSenderChat
impl Sync for UnbanChatSenderChat
impl Unpin for UnbanChatSenderChat
impl UnwindSafe for UnbanChatSenderChat
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.