#[repr(u8)]pub enum TaxRevocationReason {
Unspecified = 0,
Superseded = 1,
Fraud = 2,
Amended = 3,
AuditAdjustment = 4,
IssuerRevoked = 5,
}Expand description
Tax revocation reasons
Variants§
Unspecified = 0
Unspecified
Superseded = 1
Information superseded
Fraud = 2
Fraudulent filing
Amended = 3
Amendment filed
AuditAdjustment = 4
Audit adjustment
IssuerRevoked = 5
Issuer revoked
Trait Implementations§
Source§impl Clone for TaxRevocationReason
impl Clone for TaxRevocationReason
Source§fn clone(&self) -> TaxRevocationReason
fn clone(&self) -> TaxRevocationReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TaxRevocationReason
impl Debug for TaxRevocationReason
Source§impl<'de> Deserialize<'de> for TaxRevocationReason
impl<'de> Deserialize<'de> for TaxRevocationReason
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 PartialEq for TaxRevocationReason
impl PartialEq for TaxRevocationReason
Source§fn eq(&self, other: &TaxRevocationReason) -> bool
fn eq(&self, other: &TaxRevocationReason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TaxRevocationReason
impl Serialize for TaxRevocationReason
impl Copy for TaxRevocationReason
impl Eq for TaxRevocationReason
impl StructuralPartialEq for TaxRevocationReason
Auto Trait Implementations§
impl Freeze for TaxRevocationReason
impl RefUnwindSafe for TaxRevocationReason
impl Send for TaxRevocationReason
impl Sync for TaxRevocationReason
impl Unpin for TaxRevocationReason
impl UnsafeUnpin for TaxRevocationReason
impl UnwindSafe for TaxRevocationReason
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