pub enum UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay {
ExcludeTax,
IncludeInclusiveTax,
}
Expand description
How line-item prices and amounts will be displayed with respect to tax on invoice PDFs.
One of exclude_tax
or include_inclusive_tax
.
include_inclusive_tax
will include inclusive tax (and exclude exclusive tax) in invoice PDF amounts.
exclude_tax
will exclude all tax (inclusive and exclusive alike) from invoice PDF amounts.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
impl Clone for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
Source§fn clone(&self) -> UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
fn clone(&self) -> UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
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 UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
impl PartialEq for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
Source§fn eq(
&self,
other: &UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay,
) -> bool
fn eq( &self, other: &UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
impl Eq for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
impl StructuralPartialEq for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
Auto Trait Implementations§
impl Freeze for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
impl RefUnwindSafe for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
impl Send for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
impl Sync for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
impl Unpin for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
impl UnwindSafe for UpdateCustomerInvoiceSettingsRenderingOptionsAmountTaxDisplay
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