pub struct BalanceHistoryEntry {
pub date: NaiveDate,
pub entry_id: String,
pub account_code: String,
pub previous_balance: Decimal,
pub change: Decimal,
pub new_balance: Decimal,
}Expand description
Entry in balance history.
Fields§
§date: NaiveDate§entry_id: String§account_code: String§previous_balance: Decimal§change: Decimal§new_balance: DecimalTrait Implementations§
Source§impl Clone for BalanceHistoryEntry
impl Clone for BalanceHistoryEntry
Source§fn clone(&self) -> BalanceHistoryEntry
fn clone(&self) -> BalanceHistoryEntry
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 moreAuto Trait Implementations§
impl Freeze for BalanceHistoryEntry
impl RefUnwindSafe for BalanceHistoryEntry
impl Send for BalanceHistoryEntry
impl Sync for BalanceHistoryEntry
impl Unpin for BalanceHistoryEntry
impl UnwindSafe for BalanceHistoryEntry
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