Struct matrix_sdk::room::Receipts
source · #[non_exhaustive]pub struct Receipts {
pub fully_read: Option<OwnedEventId>,
pub public_read_receipt: Option<OwnedEventId>,
pub private_read_receipt: Option<OwnedEventId>,
}
Expand description
Receipts to send all at once.
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.fully_read: Option<OwnedEventId>
Fully-read marker (room account data).
public_read_receipt: Option<OwnedEventId>
Read receipt (public ephemeral room event).
private_read_receipt: Option<OwnedEventId>
Read receipt (private ephemeral room event).
Implementations§
source§impl Receipts
impl Receipts
sourcepub fn fully_read_marker(
self,
event_id: impl Into<Option<OwnedEventId>>,
) -> Self
pub fn fully_read_marker( self, event_id: impl Into<Option<OwnedEventId>>, ) -> Self
Set the last event the user has read.
It means that the user has read all the events before this event.
This is a private marker only visible by the user.
Note that this is technically not a receipt as it is persisted in the room account data.
sourcepub fn public_read_receipt(
self,
event_id: impl Into<Option<OwnedEventId>>,
) -> Self
pub fn public_read_receipt( self, event_id: impl Into<Option<OwnedEventId>>, ) -> Self
Set the last event presented to the user and forward it to the other users in the room.
This is used to reset the unread messages/notification count and advertise to other users the last event that the user has likely seen.
sourcepub fn private_read_receipt(
self,
event_id: impl Into<Option<OwnedEventId>>,
) -> Self
pub fn private_read_receipt( self, event_id: impl Into<Option<OwnedEventId>>, ) -> Self
Set the last event presented to the user and don’t forward it.
This is used to reset the unread messages/notification count.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Receipts
impl RefUnwindSafe for Receipts
impl Send for Receipts
impl Sync for Receipts
impl Unpin for Receipts
impl UnwindSafe for Receipts
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
)§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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