pub enum CreateSubscriptionItemsPriceDataTaxBehavior {
Exclusive,
Inclusive,
Unspecified,
}
Expand description
Only required if a default tax behavior was not provided in the Stripe Tax settings.
Specifies whether the price is considered inclusive of taxes or exclusive of taxes.
One of inclusive
, exclusive
, or unspecified
.
Once specified as either inclusive
or exclusive
, it cannot be changed.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CreateSubscriptionItemsPriceDataTaxBehavior
impl Clone for CreateSubscriptionItemsPriceDataTaxBehavior
Source§fn clone(&self) -> CreateSubscriptionItemsPriceDataTaxBehavior
fn clone(&self) -> CreateSubscriptionItemsPriceDataTaxBehavior
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 PartialEq for CreateSubscriptionItemsPriceDataTaxBehavior
impl PartialEq for CreateSubscriptionItemsPriceDataTaxBehavior
Source§fn eq(&self, other: &CreateSubscriptionItemsPriceDataTaxBehavior) -> bool
fn eq(&self, other: &CreateSubscriptionItemsPriceDataTaxBehavior) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for CreateSubscriptionItemsPriceDataTaxBehavior
impl Eq for CreateSubscriptionItemsPriceDataTaxBehavior
impl StructuralPartialEq for CreateSubscriptionItemsPriceDataTaxBehavior
Auto Trait Implementations§
impl Freeze for CreateSubscriptionItemsPriceDataTaxBehavior
impl RefUnwindSafe for CreateSubscriptionItemsPriceDataTaxBehavior
impl Send for CreateSubscriptionItemsPriceDataTaxBehavior
impl Sync for CreateSubscriptionItemsPriceDataTaxBehavior
impl Unpin for CreateSubscriptionItemsPriceDataTaxBehavior
impl UnwindSafe for CreateSubscriptionItemsPriceDataTaxBehavior
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