#[non_exhaustive]pub enum AutomaticTaxStatus {
Complete,
Failed,
RequiresLocationInputs,
Unknown(String),
}Expand description
The status of the most recent automated tax calculation for this invoice.
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.
Complete
Failed
RequiresLocationInputs
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for AutomaticTaxStatus
impl Clone for AutomaticTaxStatus
Source§fn clone(&self) -> AutomaticTaxStatus
fn clone(&self) -> AutomaticTaxStatus
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 AutomaticTaxStatus
impl Debug for AutomaticTaxStatus
Source§impl Deserialize for AutomaticTaxStatus
impl Deserialize for AutomaticTaxStatus
Source§impl Display for AutomaticTaxStatus
impl Display for AutomaticTaxStatus
Source§impl FromStr for AutomaticTaxStatus
impl FromStr for AutomaticTaxStatus
Source§impl FromValueOpt for AutomaticTaxStatus
impl FromValueOpt for AutomaticTaxStatus
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for AutomaticTaxStatus
impl PartialEq for AutomaticTaxStatus
impl Eq for AutomaticTaxStatus
impl StructuralPartialEq for AutomaticTaxStatus
Auto Trait Implementations§
impl Freeze for AutomaticTaxStatus
impl RefUnwindSafe for AutomaticTaxStatus
impl Send for AutomaticTaxStatus
impl Sync for AutomaticTaxStatus
impl Unpin for AutomaticTaxStatus
impl UnwindSafe for AutomaticTaxStatus
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