pub struct UpdateInvoiceRenderingPdf {
pub page_size: Option<UpdateInvoiceRenderingPdfPageSize>,
}
Expand description
Invoice pdf rendering options
Fields§
§page_size: Option<UpdateInvoiceRenderingPdfPageSize>
Page size for invoice PDF. Can be set to a4
, letter
, or auto
.
If set to auto
, invoice PDF page size defaults to a4
for customers with
Japanese locale and letter
for customers with other locales.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateInvoiceRenderingPdf
impl Clone for UpdateInvoiceRenderingPdf
Source§fn clone(&self) -> UpdateInvoiceRenderingPdf
fn clone(&self) -> UpdateInvoiceRenderingPdf
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 UpdateInvoiceRenderingPdf
impl Debug for UpdateInvoiceRenderingPdf
Source§impl Default for UpdateInvoiceRenderingPdf
impl Default for UpdateInvoiceRenderingPdf
impl Copy for UpdateInvoiceRenderingPdf
Auto Trait Implementations§
impl Freeze for UpdateInvoiceRenderingPdf
impl RefUnwindSafe for UpdateInvoiceRenderingPdf
impl Send for UpdateInvoiceRenderingPdf
impl Sync for UpdateInvoiceRenderingPdf
impl Unpin for UpdateInvoiceRenderingPdf
impl UnwindSafe for UpdateInvoiceRenderingPdf
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