pub struct DepreciationRunConfig {
pub default_expense_account: String,
pub default_accum_depr_account: String,
pub post_zero_entries: bool,
pub minimum_amount: Decimal,
}Expand description
Configuration for depreciation run.
Fields§
§default_expense_account: StringDefault depreciation expense account.
default_accum_depr_account: StringDefault accumulated depreciation account.
post_zero_entries: boolWhether to post zero depreciation entries.
minimum_amount: DecimalMinimum depreciation amount to post.
Trait Implementations§
Source§impl Clone for DepreciationRunConfig
impl Clone for DepreciationRunConfig
Source§fn clone(&self) -> DepreciationRunConfig
fn clone(&self) -> DepreciationRunConfig
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 DepreciationRunConfig
impl Debug for DepreciationRunConfig
Auto Trait Implementations§
impl Freeze for DepreciationRunConfig
impl RefUnwindSafe for DepreciationRunConfig
impl Send for DepreciationRunConfig
impl Sync for DepreciationRunConfig
impl Unpin for DepreciationRunConfig
impl UnwindSafe for DepreciationRunConfig
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