pub struct CreatePreviewInvoiceCustomerDetailsShipping {
pub address: CreatePreviewInvoiceCustomerDetailsShippingAddress,
pub name: String,
pub phone: Option<String>,
}
Expand description
The customer’s shipping information. Appears on invoices emailed to this customer.
Fields§
§address: CreatePreviewInvoiceCustomerDetailsShippingAddress
Customer shipping address.
name: String
Customer name.
phone: Option<String>
Customer phone (including extension).
Implementations§
Trait Implementations§
Source§impl Clone for CreatePreviewInvoiceCustomerDetailsShipping
impl Clone for CreatePreviewInvoiceCustomerDetailsShipping
Source§fn clone(&self) -> CreatePreviewInvoiceCustomerDetailsShipping
fn clone(&self) -> CreatePreviewInvoiceCustomerDetailsShipping
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 moreAuto Trait Implementations§
impl Freeze for CreatePreviewInvoiceCustomerDetailsShipping
impl RefUnwindSafe for CreatePreviewInvoiceCustomerDetailsShipping
impl Send for CreatePreviewInvoiceCustomerDetailsShipping
impl Sync for CreatePreviewInvoiceCustomerDetailsShipping
impl Unpin for CreatePreviewInvoiceCustomerDetailsShipping
impl UnwindSafe for CreatePreviewInvoiceCustomerDetailsShipping
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