pub enum TaxSystemType {
Vat,
Gst,
Pst,
Hst,
Qst,
None,
}Expand description
Represents different types of tax systems used globally.
Variants§
Vat
Value Added Tax - Common in EU and many other countries
Gst
Goods and Services Tax
Pst
Provincial Sales Tax (Canadian)
Hst
Harmonized Sales Tax (Canadian)
Qst
Quebec Sales Tax
None
No tax system applicable
Trait Implementations§
Source§impl Clone for TaxSystemType
impl Clone for TaxSystemType
Source§fn clone(&self) -> TaxSystemType
fn clone(&self) -> TaxSystemType
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 TaxSystemType
impl Debug for TaxSystemType
Source§impl<'de> Deserialize<'de> for TaxSystemType
impl<'de> Deserialize<'de> for TaxSystemType
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 TaxSystemType
impl PartialEq for TaxSystemType
Source§fn eq(&self, other: &TaxSystemType) -> bool
fn eq(&self, other: &TaxSystemType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TaxSystemType
impl Serialize for TaxSystemType
impl StructuralPartialEq for TaxSystemType
Auto Trait Implementations§
impl Freeze for TaxSystemType
impl RefUnwindSafe for TaxSystemType
impl Send for TaxSystemType
impl Sync for TaxSystemType
impl Unpin for TaxSystemType
impl UnsafeUnpin for TaxSystemType
impl UnwindSafe for TaxSystemType
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