pub struct UpdateChatAvailableReactions {
pub chat_id: i64,
pub available_reactions: ChatAvailableReactions,
}
Expand description
The chat available reactions were changed
Fields§
§chat_id: i64
Chat identifier
available_reactions: ChatAvailableReactions
The new reactions, available in the chat
Trait Implementations§
Source§impl Clone for UpdateChatAvailableReactions
impl Clone for UpdateChatAvailableReactions
Source§fn clone(&self) -> UpdateChatAvailableReactions
fn clone(&self) -> UpdateChatAvailableReactions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateChatAvailableReactions
impl Debug for UpdateChatAvailableReactions
Source§impl<'de> Deserialize<'de> for UpdateChatAvailableReactions
impl<'de> Deserialize<'de> for UpdateChatAvailableReactions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateChatAvailableReactions
impl PartialEq for UpdateChatAvailableReactions
Source§fn eq(&self, other: &UpdateChatAvailableReactions) -> bool
fn eq(&self, other: &UpdateChatAvailableReactions) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateChatAvailableReactions
Auto Trait Implementations§
impl Freeze for UpdateChatAvailableReactions
impl RefUnwindSafe for UpdateChatAvailableReactions
impl Send for UpdateChatAvailableReactions
impl Sync for UpdateChatAvailableReactions
impl Unpin for UpdateChatAvailableReactions
impl UnwindSafe for UpdateChatAvailableReactions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more