pub struct RecipientShippingWithOptionalFieldsAddress {
pub address: OptionalFieldsAddress,
pub name: String,
pub phone: Option<String>,
}
Fields§
§address: OptionalFieldsAddress
Shipping address
name: String
Recipient name.
phone: Option<String>
Recipient phone (including extension)
Implementations§
Trait Implementations§
Source§impl Clone for RecipientShippingWithOptionalFieldsAddress
impl Clone for RecipientShippingWithOptionalFieldsAddress
Source§fn clone(&self) -> RecipientShippingWithOptionalFieldsAddress
fn clone(&self) -> RecipientShippingWithOptionalFieldsAddress
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 RecipientShippingWithOptionalFieldsAddress
impl RefUnwindSafe for RecipientShippingWithOptionalFieldsAddress
impl Send for RecipientShippingWithOptionalFieldsAddress
impl Sync for RecipientShippingWithOptionalFieldsAddress
impl Unpin for RecipientShippingWithOptionalFieldsAddress
impl UnwindSafe for RecipientShippingWithOptionalFieldsAddress
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