pub enum TaxRateJurisdictionLevel {
City,
Country,
County,
District,
Multiple,
State,
}
Expand description
The level of the jurisdiction that imposes this tax rate.
Will be null
for manually defined tax rates.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TaxRateJurisdictionLevel
impl Clone for TaxRateJurisdictionLevel
Source§fn clone(&self) -> TaxRateJurisdictionLevel
fn clone(&self) -> TaxRateJurisdictionLevel
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 TaxRateJurisdictionLevel
impl Debug for TaxRateJurisdictionLevel
Source§impl Display for TaxRateJurisdictionLevel
impl Display for TaxRateJurisdictionLevel
Source§impl FromStr for TaxRateJurisdictionLevel
impl FromStr for TaxRateJurisdictionLevel
Source§impl FromValueOpt for TaxRateJurisdictionLevel
impl FromValueOpt for TaxRateJurisdictionLevel
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for TaxRateJurisdictionLevel
impl PartialEq for TaxRateJurisdictionLevel
impl Copy for TaxRateJurisdictionLevel
impl Eq for TaxRateJurisdictionLevel
impl StructuralPartialEq for TaxRateJurisdictionLevel
Auto Trait Implementations§
impl Freeze for TaxRateJurisdictionLevel
impl RefUnwindSafe for TaxRateJurisdictionLevel
impl Send for TaxRateJurisdictionLevel
impl Sync for TaxRateJurisdictionLevel
impl Unpin for TaxRateJurisdictionLevel
impl UnwindSafe for TaxRateJurisdictionLevel
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