Struct acter_core::models::ReadReceiptsManager
source · pub struct ReadReceiptsManager {
pub stats: ReadReceiptStats,
/* private fields */
}
Fields§
§stats: ReadReceiptStats
Implementations§
source§impl ReadReceiptsManager
impl ReadReceiptsManager
pub async fn from_store_and_event_id( store: &Store, event_id: &EventId, ) -> ReadReceiptsManager
pub fn event_id(&self) -> OwnedEventId
pub fn construct_read_event(&self) -> ReadReceiptEventContent
pub async fn add_receipt( &mut self, user_id: &OwnedUserId, ) -> Result<Option<String>>
pub fn stats(&self) -> ReadReceiptStats
pub fn update_key(&self) -> String
Methods from Deref<Target = ReadReceiptStats>§
sourcepub fn user_has_read(&self) -> &bool
pub fn user_has_read(&self) -> &bool
Get field user_has_read
from instance of ReadReceiptStats
.
sourcepub fn total_views(&self) -> &u32
pub fn total_views(&self) -> &u32
Get field total_views
from instance of ReadReceiptStats
.
sourcepub fn users_viewed(&self) -> &Vec<OwnedUserId>
pub fn users_viewed(&self) -> &Vec<OwnedUserId>
Get field users_viewed
from instance of ReadReceiptStats
.
Trait Implementations§
source§impl Clone for ReadReceiptsManager
impl Clone for ReadReceiptsManager
source§fn clone(&self) -> ReadReceiptsManager
fn clone(&self) -> ReadReceiptsManager
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 ReadReceiptsManager
impl Debug for ReadReceiptsManager
Auto Trait Implementations§
impl Freeze for ReadReceiptsManager
impl !RefUnwindSafe for ReadReceiptsManager
impl Send for ReadReceiptsManager
impl Sync for ReadReceiptsManager
impl Unpin for ReadReceiptsManager
impl !UnwindSafe for ReadReceiptsManager
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