pub struct ComparativeTrialBalanceLine {
pub account_code: String,
pub account_description: String,
pub category: AccountCategory,
pub period_balances: HashMap<(i32, u32), Decimal>,
pub period_changes: HashMap<(i32, u32), Decimal>,
}Expand description
A line in a comparative trial balance.
Fields§
§account_code: StringAccount code.
account_description: StringAccount description.
category: AccountCategoryCategory.
period_balances: HashMap<(i32, u32), Decimal>Balances by period.
period_changes: HashMap<(i32, u32), Decimal>Period-over-period changes.
Trait Implementations§
Source§impl Clone for ComparativeTrialBalanceLine
impl Clone for ComparativeTrialBalanceLine
Source§fn clone(&self) -> ComparativeTrialBalanceLine
fn clone(&self) -> ComparativeTrialBalanceLine
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ComparativeTrialBalanceLine
impl Debug for ComparativeTrialBalanceLine
Source§impl<'de> Deserialize<'de> for ComparativeTrialBalanceLine
impl<'de> Deserialize<'de> for ComparativeTrialBalanceLine
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ComparativeTrialBalanceLine
impl RefUnwindSafe for ComparativeTrialBalanceLine
impl Send for ComparativeTrialBalanceLine
impl Sync for ComparativeTrialBalanceLine
impl Unpin for ComparativeTrialBalanceLine
impl UnwindSafe for ComparativeTrialBalanceLine
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