#[repr(u8)]pub enum TaxIssuerClass {
TaxAuthority = 0,
EmployerPayroll = 1,
BankBroker = 2,
AuditorCpa = 3,
TaxFilingProvider = 4,
}Expand description
Tax-specific issuer class
Variants§
TaxAuthority = 0
Government tax authority (IRS, HMRC, CRA, etc.)
EmployerPayroll = 1
Employer payroll systems
BankBroker = 2
Financial institutions (banks, brokers)
AuditorCpa = 3
Licensed auditors and CPAs
TaxFilingProvider = 4
Tax preparation software/services
Implementations§
Trait Implementations§
Source§impl Clone for TaxIssuerClass
impl Clone for TaxIssuerClass
Source§fn clone(&self) -> TaxIssuerClass
fn clone(&self) -> TaxIssuerClass
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 TaxIssuerClass
impl Debug for TaxIssuerClass
Source§impl<'de> Deserialize<'de> for TaxIssuerClass
impl<'de> Deserialize<'de> for TaxIssuerClass
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 TaxIssuerClass
impl Hash for TaxIssuerClass
Source§impl PartialEq for TaxIssuerClass
impl PartialEq for TaxIssuerClass
Source§fn eq(&self, other: &TaxIssuerClass) -> bool
fn eq(&self, other: &TaxIssuerClass) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TaxIssuerClass
impl Serialize for TaxIssuerClass
impl Copy for TaxIssuerClass
impl Eq for TaxIssuerClass
impl StructuralPartialEq for TaxIssuerClass
Auto Trait Implementations§
impl Freeze for TaxIssuerClass
impl RefUnwindSafe for TaxIssuerClass
impl Send for TaxIssuerClass
impl Sync for TaxIssuerClass
impl Unpin for TaxIssuerClass
impl UnsafeUnpin for TaxIssuerClass
impl UnwindSafe for TaxIssuerClass
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