pub struct StatsUseCases { /* private fields */ }Implementations§
Source§impl StatsUseCases
impl StatsUseCases
pub fn new(repo: Arc<dyn StatsRepository>) -> Self
pub async fn get_admin_dashboard_stats( &self, ) -> Result<AdminDashboardStats, String>
pub async fn get_seed_data_stats(&self) -> Result<SeedDataStats, String>
pub async fn get_syndic_stats( &self, organization_id: Uuid, ) -> Result<SyndicDashboardStats, String>
Sourcepub async fn get_owner_stats_by_user_id(
&self,
user_id: Uuid,
) -> Result<SyndicDashboardStats, String>
pub async fn get_owner_stats_by_user_id( &self, user_id: Uuid, ) -> Result<SyndicDashboardStats, String>
Returns owner stats. If the user has no owner record returns empty stats.
pub async fn get_syndic_urgent_tasks( &self, organization_id: Uuid, ) -> Result<Vec<UrgentTask>, String>
Auto Trait Implementations§
impl Freeze for StatsUseCases
impl !RefUnwindSafe for StatsUseCases
impl Send for StatsUseCases
impl Sync for StatsUseCases
impl Unpin for StatsUseCases
impl UnsafeUnpin for StatsUseCases
impl !UnwindSafe for StatsUseCases
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
§impl<T> Fake for T
impl<T> Fake for T
§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 moreCreates a shared type from an unshared type.