pub struct CreateConfirmationTokenShipping {
pub address: CreateConfirmationTokenShippingAddress,
pub name: String,
pub phone: Option<String>,
}Expand description
Shipping information for this ConfirmationToken.
Fields§
§address: CreateConfirmationTokenShippingAddressShipping address
name: StringRecipient name.
phone: Option<String>Recipient phone (including extension)
Implementations§
Trait Implementations§
Source§impl Clone for CreateConfirmationTokenShipping
impl Clone for CreateConfirmationTokenShipping
Source§fn clone(&self) -> CreateConfirmationTokenShipping
fn clone(&self) -> CreateConfirmationTokenShipping
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 CreateConfirmationTokenShipping
impl PartialEq for CreateConfirmationTokenShipping
Source§fn eq(&self, other: &CreateConfirmationTokenShipping) -> bool
fn eq(&self, other: &CreateConfirmationTokenShipping) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateConfirmationTokenShipping
impl StructuralPartialEq for CreateConfirmationTokenShipping
Auto Trait Implementations§
impl Freeze for CreateConfirmationTokenShipping
impl RefUnwindSafe for CreateConfirmationTokenShipping
impl Send for CreateConfirmationTokenShipping
impl Sync for CreateConfirmationTokenShipping
impl Unpin for CreateConfirmationTokenShipping
impl UnsafeUnpin for CreateConfirmationTokenShipping
impl UnwindSafe for CreateConfirmationTokenShipping
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