Struct acter_core::models::ReadReceiptStats
source · pub struct ReadReceiptStats {
pub user_has_read: bool,
pub total_views: u32,
pub users_viewed: Vec<OwnedUserId>,
}
Fields§
§user_has_read: bool
§total_views: u32
§users_viewed: Vec<OwnedUserId>
Implementations§
source§impl ReadReceiptStats
impl ReadReceiptStats
Auto-generated by derive_getters::Getters
.
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 ReadReceiptStats
impl Clone for ReadReceiptStats
source§fn clone(&self) -> ReadReceiptStats
fn clone(&self) -> ReadReceiptStats
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 ReadReceiptStats
impl Debug for ReadReceiptStats
source§impl Default for ReadReceiptStats
impl Default for ReadReceiptStats
source§fn default() -> ReadReceiptStats
fn default() -> ReadReceiptStats
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ReadReceiptStats
impl<'de> Deserialize<'de> for ReadReceiptStats
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 ReadReceiptStats
impl RefUnwindSafe for ReadReceiptStats
impl Send for ReadReceiptStats
impl Sync for ReadReceiptStats
impl Unpin for ReadReceiptStats
impl UnwindSafe for ReadReceiptStats
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