#[non_exhaustive]pub enum TaxRateJurisdictionLevel {
City,
Country,
County,
District,
Multiple,
State,
Unknown(String),
}Expand description
The level of the jurisdiction that imposes this tax rate.
Will be null for manually defined tax rates.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
City
Country
County
District
Multiple
State
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
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 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