Struct sqlx_ledger::balance::Balances
source · 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 !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