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: RecipientUnique identifier for the target chat or username of the target channel (in the format @channelusername)
Implementations
Trait Implementations
sourceimpl Payload for LeaveChat
impl Payload for LeaveChat
sourcefn 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. Read moreimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.