Struct teloxide_core::payloads::UnpinAllChatMessages
source · pub struct UnpinAllChatMessages {
pub chat_id: Recipient,
}
Expand description
Use this method to clear the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the ‘can_pin_messages’ admin right in a supergroup or ‘can_edit_messages’ admin right in a 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 Clone for UnpinAllChatMessages
impl Clone for UnpinAllChatMessages
source§impl Debug for UnpinAllChatMessages
impl Debug for UnpinAllChatMessages
source§impl Hash for UnpinAllChatMessages
impl Hash for UnpinAllChatMessages
source§impl PartialEq<UnpinAllChatMessages> for UnpinAllChatMessages
impl PartialEq<UnpinAllChatMessages> for UnpinAllChatMessages
source§fn eq(&self, other: &UnpinAllChatMessages) -> bool
fn eq(&self, other: &UnpinAllChatMessages) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for UnpinAllChatMessages
impl Payload for UnpinAllChatMessages
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 UnpinAllChatMessages
impl Serialize for UnpinAllChatMessages
impl Eq for UnpinAllChatMessages
impl StructuralEq for UnpinAllChatMessages
impl StructuralPartialEq for UnpinAllChatMessages
Auto Trait Implementations§
impl RefUnwindSafe for UnpinAllChatMessages
impl Send for UnpinAllChatMessages
impl Sync for UnpinAllChatMessages
impl Unpin for UnpinAllChatMessages
impl UnwindSafe for UnpinAllChatMessages
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.