pub struct PermanentDifference {
pub description: String,
pub amount: Decimal,
pub tax_effect: Decimal,
}Expand description
A single permanent difference item in the ETR reconciliation.
Fields§
§description: StringDescription of the permanent difference (e.g. “Meals & entertainment (50% disallowed)”).
amount: DecimalPre-tax amount of the difference (positive = adds to taxable income).
tax_effect: DecimalTax effect = amount × statutory_rate (positive = increases tax expense).
Trait Implementations§
Source§impl Clone for PermanentDifference
impl Clone for PermanentDifference
Source§fn clone(&self) -> PermanentDifference
fn clone(&self) -> PermanentDifference
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 PermanentDifference
impl Debug for PermanentDifference
Source§impl<'de> Deserialize<'de> for PermanentDifference
impl<'de> Deserialize<'de> for PermanentDifference
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 PermanentDifference
impl RefUnwindSafe for PermanentDifference
impl Send for PermanentDifference
impl Sync for PermanentDifference
impl Unpin for PermanentDifference
impl UnsafeUnpin for PermanentDifference
impl UnwindSafe for PermanentDifference
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