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, AppError>
pub async fn get_seed_data_stats(&self) -> Result<SeedDataStats, AppError>
pub async fn get_syndic_stats( &self, organization_id: Uuid, ) -> Result<SyndicDashboardStats, AppError>
Sourcepub async fn get_owner_stats_by_user_id(
&self,
user_id: Uuid,
) -> Result<SyndicDashboardStats, AppError>
pub async fn get_owner_stats_by_user_id( &self, user_id: Uuid, ) -> Result<SyndicDashboardStats, AppError>
Returns owner stats. If the user has no owner record returns empty stats.
Sourcepub async fn get_owner_dues_by_acp(
&self,
user_id: Uuid,
) -> Result<Vec<DuAupresDuneAcp>, AppError>
pub async fn get_owner_dues_by_acp( &self, user_id: Uuid, ) -> Result<Vec<DuAupresDuneAcp>, AppError>
Ce que le copropriétaire doit, ventilé par association.
Liste vide si l’utilisateur n’est rattaché à aucune fiche de copropriétaire : ce n’est pas une erreur, c’est un compte qui n’a pas encore de lot. Rendre une erreur ferait afficher une panne là où il n’y a rien à payer.
pub async fn get_syndic_urgent_tasks( &self, organization_id: Uuid, ) -> Result<Vec<UrgentTask>, AppError>
Auto Trait Implementations§
impl !RefUnwindSafe for StatsUseCases
impl !UnwindSafe for StatsUseCases
impl Freeze for StatsUseCases
impl Send for StatsUseCases
impl Sync for StatsUseCases
impl Unpin for StatsUseCases
impl UnsafeUnpin 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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§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.