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