pub struct UnreadCountUpdatedData {
pub conversation_id: String,
pub unread_count: i32,
pub total_unread: i32,
}Expand description
Unread count updated event data
Fields§
§conversation_id: String§unread_count: i32§total_unread: i32Trait Implementations§
Source§impl Clone for UnreadCountUpdatedData
impl Clone for UnreadCountUpdatedData
Source§fn clone(&self) -> UnreadCountUpdatedData
fn clone(&self) -> UnreadCountUpdatedData
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 Debug for UnreadCountUpdatedData
impl Debug for UnreadCountUpdatedData
Source§impl<'de> Deserialize<'de> for UnreadCountUpdatedData
impl<'de> Deserialize<'de> for UnreadCountUpdatedData
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
Auto Trait Implementations§
impl Freeze for UnreadCountUpdatedData
impl RefUnwindSafe for UnreadCountUpdatedData
impl Send for UnreadCountUpdatedData
impl Sync for UnreadCountUpdatedData
impl Unpin for UnreadCountUpdatedData
impl UnsafeUnpin for UnreadCountUpdatedData
impl UnwindSafe for UnreadCountUpdatedData
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