#[non_exhaustive]pub enum InvoiceCustomerTaxExempt {
Exempt,
None,
Reverse,
Unknown(String),
}Expand description
The customer’s tax exempt status.
Until the invoice is finalized, this field will equal customer.tax_exempt.
Once the invoice is finalized, this field will no longer be updated.
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.
Exempt
None
Reverse
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for InvoiceCustomerTaxExempt
impl Clone for InvoiceCustomerTaxExempt
Source§fn clone(&self) -> InvoiceCustomerTaxExempt
fn clone(&self) -> InvoiceCustomerTaxExempt
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 InvoiceCustomerTaxExempt
impl Debug for InvoiceCustomerTaxExempt
Source§impl Display for InvoiceCustomerTaxExempt
impl Display for InvoiceCustomerTaxExempt
Source§impl FromStr for InvoiceCustomerTaxExempt
impl FromStr for InvoiceCustomerTaxExempt
Source§impl FromValueOpt for InvoiceCustomerTaxExempt
impl FromValueOpt for InvoiceCustomerTaxExempt
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for InvoiceCustomerTaxExempt
impl PartialEq for InvoiceCustomerTaxExempt
impl Eq for InvoiceCustomerTaxExempt
impl StructuralPartialEq for InvoiceCustomerTaxExempt
Auto Trait Implementations§
impl Freeze for InvoiceCustomerTaxExempt
impl RefUnwindSafe for InvoiceCustomerTaxExempt
impl Send for InvoiceCustomerTaxExempt
impl Sync for InvoiceCustomerTaxExempt
impl Unpin for InvoiceCustomerTaxExempt
impl UnwindSafe for InvoiceCustomerTaxExempt
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