pub enum CreateQuoteLineItemsPriceDataTaxBehavior {
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 CreateQuoteLineItemsPriceDataTaxBehavior
impl Clone for CreateQuoteLineItemsPriceDataTaxBehavior
Source§fn clone(&self) -> CreateQuoteLineItemsPriceDataTaxBehavior
fn clone(&self) -> CreateQuoteLineItemsPriceDataTaxBehavior
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 CreateQuoteLineItemsPriceDataTaxBehavior
impl PartialEq for CreateQuoteLineItemsPriceDataTaxBehavior
Source§fn eq(&self, other: &CreateQuoteLineItemsPriceDataTaxBehavior) -> bool
fn eq(&self, other: &CreateQuoteLineItemsPriceDataTaxBehavior) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for CreateQuoteLineItemsPriceDataTaxBehavior
impl Eq for CreateQuoteLineItemsPriceDataTaxBehavior
impl StructuralPartialEq for CreateQuoteLineItemsPriceDataTaxBehavior
Auto Trait Implementations§
impl Freeze for CreateQuoteLineItemsPriceDataTaxBehavior
impl RefUnwindSafe for CreateQuoteLineItemsPriceDataTaxBehavior
impl Send for CreateQuoteLineItemsPriceDataTaxBehavior
impl Sync for CreateQuoteLineItemsPriceDataTaxBehavior
impl Unpin for CreateQuoteLineItemsPriceDataTaxBehavior
impl UnwindSafe for CreateQuoteLineItemsPriceDataTaxBehavior
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