AccountService

Struct AccountService 

Source
pub struct AccountService<'a> { /* private fields */ }
Expand description

Service for account management

Implementations§

Source§

impl<'a> AccountService<'a>

Source

pub fn new(storage: &'a Storage) -> Self

Create a new account service

Source

pub fn create( &self, name: &str, account_type: AccountType, starting_balance: Money, on_budget: bool, ) -> EnvelopeResult<Account>

Create a new account

Source

pub fn get(&self, id: AccountId) -> EnvelopeResult<Option<Account>>

Get an account by ID

Source

pub fn get_by_name(&self, name: &str) -> EnvelopeResult<Option<Account>>

Get an account by name (case-insensitive)

Source

pub fn find(&self, identifier: &str) -> EnvelopeResult<Option<Account>>

Find an account by name or ID string

Source

pub fn list(&self, include_archived: bool) -> EnvelopeResult<Vec<Account>>

Get all accounts

Source

pub fn list_with_balances( &self, include_archived: bool, ) -> EnvelopeResult<Vec<AccountSummary>>

Get all accounts with their computed balances

Source

pub fn get_summary(&self, account: &Account) -> EnvelopeResult<AccountSummary>

Get account summary with computed balances

Source

pub fn calculate_balance(&self, account_id: AccountId) -> EnvelopeResult<Money>

Calculate the current balance for an account

Source

pub fn calculate_cleared_balance( &self, account_id: AccountId, ) -> EnvelopeResult<Money>

Calculate the cleared balance for an account

Source

pub fn update( &self, id: AccountId, name: Option<&str>, ) -> EnvelopeResult<Account>

Update an account

Source

pub fn archive(&self, id: AccountId) -> EnvelopeResult<Account>

Archive an account (soft delete)

Source

pub fn unarchive(&self, id: AccountId) -> EnvelopeResult<Account>

Unarchive an account

Source

pub fn total_on_budget_balance(&self) -> EnvelopeResult<Money>

Get total balance across all on-budget accounts

Auto Trait Implementations§

§

impl<'a> Freeze for AccountService<'a>

§

impl<'a> RefUnwindSafe for AccountService<'a>

§

impl<'a> Send for AccountService<'a>

§

impl<'a> Sync for AccountService<'a>

§

impl<'a> Unpin for AccountService<'a>

§

impl<'a> UnwindSafe for AccountService<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.