pub struct InvoiceSettingCustomerRenderingOptions {
pub amount_tax_display: Option<String>,
pub template: Option<String>,
}Fields§
§amount_tax_display: Option<String>How line-item prices and amounts will be displayed with respect to tax on invoice PDFs.
template: Option<String>ID of the invoice rendering template to be used for this customer’s invoices. If set, the template will be used on all invoices for this customer unless a template is set directly on the invoice.
Trait Implementations§
Source§impl Clone for InvoiceSettingCustomerRenderingOptions
impl Clone for InvoiceSettingCustomerRenderingOptions
Source§fn clone(&self) -> InvoiceSettingCustomerRenderingOptions
fn clone(&self) -> InvoiceSettingCustomerRenderingOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl FromValueOpt for InvoiceSettingCustomerRenderingOptions
impl FromValueOpt for InvoiceSettingCustomerRenderingOptions
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for InvoiceSettingCustomerRenderingOptions
impl PartialEq for InvoiceSettingCustomerRenderingOptions
Source§fn eq(&self, other: &InvoiceSettingCustomerRenderingOptions) -> bool
fn eq(&self, other: &InvoiceSettingCustomerRenderingOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InvoiceSettingCustomerRenderingOptions
impl StructuralPartialEq for InvoiceSettingCustomerRenderingOptions
Auto Trait Implementations§
impl Freeze for InvoiceSettingCustomerRenderingOptions
impl RefUnwindSafe for InvoiceSettingCustomerRenderingOptions
impl Send for InvoiceSettingCustomerRenderingOptions
impl Sync for InvoiceSettingCustomerRenderingOptions
impl Unpin for InvoiceSettingCustomerRenderingOptions
impl UnsafeUnpin for InvoiceSettingCustomerRenderingOptions
impl UnwindSafe for InvoiceSettingCustomerRenderingOptions
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