pub struct PostgresResolutionRepository { /* private fields */ }Implementations§
Trait Implementations§
Source§impl ResolutionRepository for PostgresResolutionRepository
impl ResolutionRepository for PostgresResolutionRepository
Source§fn create<'life0, 'life1, 'async_trait>(
&'life0 self,
resolution: &'life1 Resolution,
) -> Pin<Box<dyn Future<Output = Result<Resolution, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn create<'life0, 'life1, 'async_trait>(
&'life0 self,
resolution: &'life1 Resolution,
) -> Pin<Box<dyn Future<Output = Result<Resolution, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Create a new resolution
Source§fn find_by_id<'life0, 'async_trait>(
&'life0 self,
id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Option<Resolution>, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn find_by_id<'life0, 'async_trait>(
&'life0 self,
id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Option<Resolution>, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Find a resolution by ID
Source§fn find_by_meeting_id<'life0, 'async_trait>(
&'life0 self,
meeting_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Vec<Resolution>, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn find_by_meeting_id<'life0, 'async_trait>(
&'life0 self,
meeting_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Vec<Resolution>, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Find all resolutions for a meeting
Source§fn find_by_status<'life0, 'async_trait>(
&'life0 self,
status: ResolutionStatus,
) -> Pin<Box<dyn Future<Output = Result<Vec<Resolution>, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn find_by_status<'life0, 'async_trait>(
&'life0 self,
status: ResolutionStatus,
) -> Pin<Box<dyn Future<Output = Result<Vec<Resolution>, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Find resolutions by status
Source§fn update<'life0, 'life1, 'async_trait>(
&'life0 self,
resolution: &'life1 Resolution,
) -> Pin<Box<dyn Future<Output = Result<Resolution, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn update<'life0, 'life1, 'async_trait>(
&'life0 self,
resolution: &'life1 Resolution,
) -> Pin<Box<dyn Future<Output = Result<Resolution, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Update a resolution (for vote counts and status changes)
Source§fn delete<'life0, 'async_trait>(
&'life0 self,
id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<bool, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn delete<'life0, 'async_trait>(
&'life0 self,
id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<bool, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Delete a resolution
Source§fn update_vote_counts<'life0, 'async_trait>(
&'life0 self,
resolution_id: Uuid,
vote_count_pour: i32,
vote_count_contre: i32,
vote_count_abstention: i32,
total_voting_power_pour: f64,
total_voting_power_contre: f64,
total_voting_power_abstention: f64,
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn update_vote_counts<'life0, 'async_trait>(
&'life0 self,
resolution_id: Uuid,
vote_count_pour: i32,
vote_count_contre: i32,
vote_count_abstention: i32,
total_voting_power_pour: f64,
total_voting_power_contre: f64,
total_voting_power_abstention: f64,
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Update vote counts for a resolution
Auto Trait Implementations§
impl Freeze for PostgresResolutionRepository
impl !RefUnwindSafe for PostgresResolutionRepository
impl Send for PostgresResolutionRepository
impl Sync for PostgresResolutionRepository
impl Unpin for PostgresResolutionRepository
impl !UnwindSafe for PostgresResolutionRepository
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> Chain<T> for T
impl<T> Chain<T> for T
§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.