pub struct UpdateChatUnreadReactionCount {
pub chat_id: i64,
pub unread_reaction_count: i32,
}
Expand description
The chat unread_reaction_count has changed
Fields§
§chat_id: i64
Chat identifier
unread_reaction_count: i32
The number of messages with unread reactions left in the chat
Trait Implementations§
Source§impl Clone for UpdateChatUnreadReactionCount
impl Clone for UpdateChatUnreadReactionCount
Source§fn clone(&self) -> UpdateChatUnreadReactionCount
fn clone(&self) -> UpdateChatUnreadReactionCount
Returns a duplicate 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 Default for UpdateChatUnreadReactionCount
impl Default for UpdateChatUnreadReactionCount
Source§fn default() -> UpdateChatUnreadReactionCount
fn default() -> UpdateChatUnreadReactionCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateChatUnreadReactionCount
impl<'de> Deserialize<'de> for UpdateChatUnreadReactionCount
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 UpdateChatUnreadReactionCount
impl PartialEq for UpdateChatUnreadReactionCount
Source§fn eq(&self, other: &UpdateChatUnreadReactionCount) -> bool
fn eq(&self, other: &UpdateChatUnreadReactionCount) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateChatUnreadReactionCount
Auto Trait Implementations§
impl Freeze for UpdateChatUnreadReactionCount
impl RefUnwindSafe for UpdateChatUnreadReactionCount
impl Send for UpdateChatUnreadReactionCount
impl Sync for UpdateChatUnreadReactionCount
impl Unpin for UpdateChatUnreadReactionCount
impl UnwindSafe for UpdateChatUnreadReactionCount
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