pub enum TaxAmountTaxabilityReason {
Show 15 variants
CustomerExempt,
NotCollecting,
NotSubjectToTax,
NotSupported,
PortionProductExempt,
PortionReducedRated,
PortionStandardRated,
ProductExempt,
ProductExemptHoliday,
ProportionallyRated,
ReducedRated,
ReverseCharge,
StandardRated,
TaxableBasisReduced,
ZeroRated,
}Available on crate feature
billing only.Expand description
An enum representing the possible values of an TaxAmount’s taxability_reason field.
Variants§
CustomerExempt
NotCollecting
NotSubjectToTax
NotSupported
PortionProductExempt
PortionReducedRated
PortionStandardRated
ProductExempt
ProductExemptHoliday
ProportionallyRated
ReducedRated
ReverseCharge
StandardRated
TaxableBasisReduced
ZeroRated
Implementations§
Trait Implementations§
Source§impl AsRef<str> for TaxAmountTaxabilityReason
impl AsRef<str> for TaxAmountTaxabilityReason
Source§impl Clone for TaxAmountTaxabilityReason
impl Clone for TaxAmountTaxabilityReason
Source§fn clone(&self) -> TaxAmountTaxabilityReason
fn clone(&self) -> TaxAmountTaxabilityReason
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 TaxAmountTaxabilityReason
impl Debug for TaxAmountTaxabilityReason
Source§impl Default for TaxAmountTaxabilityReason
impl Default for TaxAmountTaxabilityReason
Source§impl<'de> Deserialize<'de> for TaxAmountTaxabilityReason
impl<'de> Deserialize<'de> for TaxAmountTaxabilityReason
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 Display for TaxAmountTaxabilityReason
impl Display for TaxAmountTaxabilityReason
impl Copy for TaxAmountTaxabilityReason
impl Eq for TaxAmountTaxabilityReason
impl StructuralPartialEq for TaxAmountTaxabilityReason
Auto Trait Implementations§
impl Freeze for TaxAmountTaxabilityReason
impl RefUnwindSafe for TaxAmountTaxabilityReason
impl Send for TaxAmountTaxabilityReason
impl Sync for TaxAmountTaxabilityReason
impl Unpin for TaxAmountTaxabilityReason
impl UnwindSafe for TaxAmountTaxabilityReason
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.