pub struct InvoiceRenderingPdf {
pub page_size: Option<InvoiceRenderingPdfPageSize>,
}
Fields§
§page_size: Option<InvoiceRenderingPdfPageSize>
Page size of invoice pdf. Options include a4, letter, and auto. If set to auto, page size will be switched to a4 or letter based on customer locale.
Trait Implementations§
Source§impl Clone for InvoiceRenderingPdf
impl Clone for InvoiceRenderingPdf
Source§fn clone(&self) -> InvoiceRenderingPdf
fn clone(&self) -> InvoiceRenderingPdf
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 InvoiceRenderingPdf
impl Debug for InvoiceRenderingPdf
Source§impl Deserialize for InvoiceRenderingPdf
impl Deserialize for InvoiceRenderingPdf
Source§impl FromValueOpt for InvoiceRenderingPdf
impl FromValueOpt for InvoiceRenderingPdf
fn from_value(v: Value) -> Option<Self>
impl Copy for InvoiceRenderingPdf
Auto Trait Implementations§
impl Freeze for InvoiceRenderingPdf
impl RefUnwindSafe for InvoiceRenderingPdf
impl Send for InvoiceRenderingPdf
impl Sync for InvoiceRenderingPdf
impl Unpin for InvoiceRenderingPdf
impl UnwindSafe for InvoiceRenderingPdf
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