pub struct UncertainTaxPosition {
pub id: String,
pub entity_id: String,
pub description: String,
pub tax_benefit: Decimal,
pub recognition_threshold: Decimal,
pub recognized_amount: Decimal,
pub measurement_method: TaxMeasurementMethod,
}Expand description
An uncertain tax position evaluated under FIN 48 / IFRIC 23.
Fields§
§id: StringUnique UTP identifier
entity_id: StringLegal entity
description: StringDescription of the tax position
tax_benefit: DecimalTotal gross tax benefit claimed
recognition_threshold: DecimalRecognition threshold (typically 0.50 for “more-likely-than-not”)
recognized_amount: DecimalAmount recognized in the financial statements
measurement_method: TaxMeasurementMethodMeasurement method used to determine the recognized amount
Implementations§
Source§impl UncertainTaxPosition
impl UncertainTaxPosition
Sourcepub fn new(
id: impl Into<String>,
entity_id: impl Into<String>,
description: impl Into<String>,
tax_benefit: Decimal,
recognition_threshold: Decimal,
recognized_amount: Decimal,
measurement_method: TaxMeasurementMethod,
) -> Self
pub fn new( id: impl Into<String>, entity_id: impl Into<String>, description: impl Into<String>, tax_benefit: Decimal, recognition_threshold: Decimal, recognized_amount: Decimal, measurement_method: TaxMeasurementMethod, ) -> Self
Creates a new uncertain tax position.
Sourcepub fn unrecognized_amount(&self) -> Decimal
pub fn unrecognized_amount(&self) -> Decimal
Returns the portion of the tax benefit that has not been recognized.
Trait Implementations§
Source§impl Clone for UncertainTaxPosition
impl Clone for UncertainTaxPosition
Source§fn clone(&self) -> UncertainTaxPosition
fn clone(&self) -> UncertainTaxPosition
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 UncertainTaxPosition
impl Debug for UncertainTaxPosition
Source§impl<'de> Deserialize<'de> for UncertainTaxPosition
impl<'de> Deserialize<'de> for UncertainTaxPosition
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 UncertainTaxPosition
impl RefUnwindSafe for UncertainTaxPosition
impl Send for UncertainTaxPosition
impl Sync for UncertainTaxPosition
impl Unpin for UncertainTaxPosition
impl UnsafeUnpin for UncertainTaxPosition
impl UnwindSafe for UncertainTaxPosition
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