Struct acter_core::models::ReactionManager
source · pub struct ReactionManager { /* private fields */ }
Implementations§
source§impl ReactionManager
impl ReactionManager
pub async fn from_store_and_event_id( store: &Store, event_id: &EventId, ) -> ReactionManager
pub fn event_id(&self) -> OwnedEventId
pub async fn get_reacted_user_event( &self, user_id: &UserId, filter: fn(_: &Reaction) -> bool, ) -> Result<Option<Reaction>>
pub fn construct_like_event(&self) -> ReactionEventContent
pub fn construct_reaction_event(&self, key: String) -> ReactionEventContent
pub async fn reaction_entries(&self) -> Result<HashMap<OwnedUserId, Reaction>>
pub fn stats(&self) -> ReactionStats
pub fn update_key(&self) -> String
pub async fn save(&self) -> Result<String>
Methods from Deref<Target = ReactionStats>§
sourcepub fn has_reaction_entries(&self) -> &bool
pub fn has_reaction_entries(&self) -> &bool
Get field has_reaction_entries
from instance of ReactionStats
.
sourcepub fn has_like_reactions(&self) -> &bool
pub fn has_like_reactions(&self) -> &bool
Get field has_like_reactions
from instance of ReactionStats
.
sourcepub fn total_like_reactions(&self) -> &u32
pub fn total_like_reactions(&self) -> &u32
Get field total_like_reactions
from instance of ReactionStats
.
sourcepub fn user_has_liked(&self) -> &bool
pub fn user_has_liked(&self) -> &bool
Get field user_has_liked
from instance of ReactionStats
.
sourcepub fn user_likes(&self) -> &Vec<OwnedEventId>
pub fn user_likes(&self) -> &Vec<OwnedEventId>
Get field user_likes
from instance of ReactionStats
.
sourcepub fn user_has_reacted(&self) -> &bool
pub fn user_has_reacted(&self) -> &bool
Get field user_has_reacted
from instance of ReactionStats
.
sourcepub fn total_reaction_count(&self) -> &u32
pub fn total_reaction_count(&self) -> &u32
Get field total_reaction_count
from instance of ReactionStats
.
sourcepub fn user_reactions(&self) -> &Vec<OwnedEventId>
pub fn user_reactions(&self) -> &Vec<OwnedEventId>
Get field user_reactions
from instance of ReactionStats
.
Trait Implementations§
source§impl Clone for ReactionManager
impl Clone for ReactionManager
source§fn clone(&self) -> ReactionManager
fn clone(&self) -> ReactionManager
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 ReactionManager
impl Debug for ReactionManager
Auto Trait Implementations§
impl Freeze for ReactionManager
impl !RefUnwindSafe for ReactionManager
impl Send for ReactionManager
impl Sync for ReactionManager
impl Unpin for ReactionManager
impl !UnwindSafe for ReactionManager
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