pub enum TaxAnomalyType {
IncorrectTaxCode,
MissingTaxLine,
RateArbitrage,
LateFilingRisk,
TransferPricingDeviation,
WithholdingUnderstatement,
}Expand description
Types of tax anomalies that can be injected.
Variants§
IncorrectTaxCode
Wrong tax code applied for the jurisdiction/product combination.
MissingTaxLine
Taxable transaction missing tax lines entirely.
RateArbitrage
Artificial routing through low-tax jurisdictions.
LateFilingRisk
Filing pattern trending toward deadline.
TransferPricingDeviation
Transfer pricing outside arm’s-length range.
WithholdingUnderstatement
Applied withholding rate below statutory without treaty justification.
Trait Implementations§
Source§impl Clone for TaxAnomalyType
impl Clone for TaxAnomalyType
Source§fn clone(&self) -> TaxAnomalyType
fn clone(&self) -> TaxAnomalyType
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 TaxAnomalyType
impl Debug for TaxAnomalyType
Source§impl<'de> Deserialize<'de> for TaxAnomalyType
impl<'de> Deserialize<'de> for TaxAnomalyType
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
Source§impl Hash for TaxAnomalyType
impl Hash for TaxAnomalyType
Source§impl PartialEq for TaxAnomalyType
impl PartialEq for TaxAnomalyType
Source§impl Serialize for TaxAnomalyType
impl Serialize for TaxAnomalyType
impl Copy for TaxAnomalyType
impl Eq for TaxAnomalyType
impl StructuralPartialEq for TaxAnomalyType
Auto Trait Implementations§
impl Freeze for TaxAnomalyType
impl RefUnwindSafe for TaxAnomalyType
impl Send for TaxAnomalyType
impl Sync for TaxAnomalyType
impl Unpin for TaxAnomalyType
impl UnsafeUnpin for TaxAnomalyType
impl UnwindSafe for TaxAnomalyType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.