pub struct TaxProvisionInput {
pub company_code: String,
pub fiscal_year: i32,
pub pretax_income: Decimal,
pub permanent_differences: Vec<TaxAdjustment>,
pub temporary_differences: Vec<TaxAdjustment>,
pub statutory_rate: Decimal,
pub tax_credits: Decimal,
pub prior_year_adjustment: Decimal,
}Expand description
Tax provision calculation inputs.
Fields§
§company_code: StringCompany code.
fiscal_year: i32Fiscal year.
pretax_income: DecimalPre-tax book income.
permanent_differences: Vec<TaxAdjustment>Permanent differences (add back).
temporary_differences: Vec<TaxAdjustment>Temporary differences (timing).
statutory_rate: DecimalStatutory tax rate.
tax_credits: DecimalTax credits available.
prior_year_adjustment: DecimalPrior year over/under provision.
Trait Implementations§
Source§impl Clone for TaxProvisionInput
impl Clone for TaxProvisionInput
Source§fn clone(&self) -> TaxProvisionInput
fn clone(&self) -> TaxProvisionInput
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 TaxProvisionInput
impl RefUnwindSafe for TaxProvisionInput
impl Send for TaxProvisionInput
impl Sync for TaxProvisionInput
impl Unpin for TaxProvisionInput
impl UnwindSafe for TaxProvisionInput
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