pub struct Balances { /* private fields */ }Expand description
Repository for working with AccountBalance entities.
Implementations§
Source§impl Balances
impl Balances
pub fn new(pool: &PgPool) -> Self
pub async fn find( &self, journal_id: JournalId, account_id: AccountId, currency: Currency, ) -> Result<Option<AccountBalance>, SqlxLedgerError>
pub async fn find_all( &self, journal_id: JournalId, accounts: impl IntoIterator<Item = AccountId>, ) -> Result<HashMap<AccountId, HashMap<Currency, AccountBalance>>, SqlxLedgerError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Balances
impl !RefUnwindSafe for Balances
impl Send for Balances
impl Sync for Balances
impl Unpin for Balances
impl !UnwindSafe for Balances
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§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