Struct matrix_sdk_base::read_receipts::RoomReadReceipts
source · pub struct RoomReadReceipts {
pub num_unread: u64,
pub num_notifications: u64,
pub num_mentions: u64,
/* private fields */
}
Expand description
Public data about read receipts collected during processing of that room.
Remember that each time a field of RoomReadReceipts
is updated in
compute_unread_counts
, this function must return true!
Fields§
§num_unread: u64
Does the room have unread messages?
num_notifications: u64
Does the room have unread events that should notify?
num_mentions: u64
Does the room have messages causing highlights for the users? (aka mentions)
Trait Implementations§
source§impl Clone for RoomReadReceipts
impl Clone for RoomReadReceipts
source§fn clone(&self) -> RoomReadReceipts
fn clone(&self) -> RoomReadReceipts
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 RoomReadReceipts
impl Debug for RoomReadReceipts
source§impl Default for RoomReadReceipts
impl Default for RoomReadReceipts
source§impl<'de> Deserialize<'de> for RoomReadReceipts
impl<'de> Deserialize<'de> for RoomReadReceipts
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 RoomReadReceipts
impl PartialEq for RoomReadReceipts
source§fn eq(&self, other: &RoomReadReceipts) -> bool
fn eq(&self, other: &RoomReadReceipts) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for RoomReadReceipts
impl Serialize for RoomReadReceipts
impl StructuralPartialEq for RoomReadReceipts
Auto Trait Implementations§
impl Freeze for RoomReadReceipts
impl RefUnwindSafe for RoomReadReceipts
impl Send for RoomReadReceipts
impl Sync for RoomReadReceipts
impl Unpin for RoomReadReceipts
impl UnwindSafe for RoomReadReceipts
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more