#[non_exhaustive]pub struct NotificationCounts {
    pub unread: UInt,
    pub missed_calls: UInt,
}Available on crate feature 
api and (crate features push-gateway-api-c or push-gateway-api-s) only.Expand description
Type for passing information about notification counts.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.unread: UIntThe number of unread messages a user has across all of the rooms they are a member of.
missed_calls: UIntThe number of unacknowledged missed calls a user has across all rooms of which they are a member.
Implementations§
Source§impl NotificationCounts
 
impl NotificationCounts
Sourcepub fn new(unread: UInt, missed_calls: UInt) -> NotificationCounts
 
pub fn new(unread: UInt, missed_calls: UInt) -> NotificationCounts
Create new notification counts from the given unread and missed call counts.
Trait Implementations§
Source§impl Clone for NotificationCounts
 
impl Clone for NotificationCounts
Source§fn clone(&self) -> NotificationCounts
 
fn clone(&self) -> NotificationCounts
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 NotificationCounts
 
impl Debug for NotificationCounts
Source§impl Default for NotificationCounts
 
impl Default for NotificationCounts
Source§fn default() -> NotificationCounts
 
fn default() -> NotificationCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotificationCounts
 
impl<'de> Deserialize<'de> for NotificationCounts
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<NotificationCounts, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<NotificationCounts, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NotificationCounts
 
impl Serialize for NotificationCounts
Source§fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for NotificationCounts
impl RefUnwindSafe for NotificationCounts
impl Send for NotificationCounts
impl Sync for NotificationCounts
impl Unpin for NotificationCounts
impl UnwindSafe for NotificationCounts
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