Struct teloxide_core::payloads::LeaveChat
source · pub struct LeaveChat {
pub chat_id: Recipient,
}
Expand description
Use this method for your bot to leave a group, supergroup or channel. Returns True on success.
Fields§
§chat_id: Recipient
Unique identifier for the target chat or username of the target channel (in the format @channelusername
)
Implementations§
Trait Implementations§
source§impl PartialEq<LeaveChat> for LeaveChat
impl PartialEq<LeaveChat> for LeaveChat
source§impl Payload for LeaveChat
impl Payload for LeaveChat
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.impl Eq for LeaveChat
impl StructuralEq for LeaveChat
impl StructuralPartialEq for LeaveChat
Auto Trait Implementations§
impl RefUnwindSafe for LeaveChat
impl Send for LeaveChat
impl Sync for LeaveChat
impl Unpin for LeaveChat
impl UnwindSafe for LeaveChat
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.