pub enum AutomaticTaxStatus {
Complete,
Failed,
RequiresLocationInputs,
}
Expand description
The status of the most recent automated tax calculation for this invoice.
Variants§
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§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<AutomaticTaxStatus, <AutomaticTaxStatus as FromStr>::Err>
fn from_str( s: &str, ) -> Result<AutomaticTaxStatus, <AutomaticTaxStatus as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for AutomaticTaxStatus
impl PartialEq for AutomaticTaxStatus
impl Copy 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