pub struct CreateIssuingCardShipping {
pub address: RequiredAddress,
pub address_validation: Option<CreateIssuingCardShippingAddressValidation>,
pub customs: Option<CustomsParam>,
pub name: String,
pub phone_number: Option<String>,
pub require_signature: Option<bool>,
pub service: Option<CreateIssuingCardShippingService>,
pub type_: Option<CreateIssuingCardShippingType>,
}Expand description
The address where the card will be shipped.
Fields§
§address: RequiredAddressThe address that the card is shipped to.
address_validation: Option<CreateIssuingCardShippingAddressValidation>Address validation settings.
customs: Option<CustomsParam>Customs information for the shipment.
name: StringThe name printed on the shipping label when shipping the card.
phone_number: Option<String>Phone number of the recipient of the shipment.
require_signature: Option<bool>Whether a signature is required for card delivery.
service: Option<CreateIssuingCardShippingService>Shipment service.
type_: Option<CreateIssuingCardShippingType>Packaging options.
Implementations§
Trait Implementations§
Source§impl Clone for CreateIssuingCardShipping
impl Clone for CreateIssuingCardShipping
Source§fn clone(&self) -> CreateIssuingCardShipping
fn clone(&self) -> CreateIssuingCardShipping
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateIssuingCardShipping
impl Debug for CreateIssuingCardShipping
Source§impl PartialEq for CreateIssuingCardShipping
impl PartialEq for CreateIssuingCardShipping
Source§fn eq(&self, other: &CreateIssuingCardShipping) -> bool
fn eq(&self, other: &CreateIssuingCardShipping) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateIssuingCardShipping
impl StructuralPartialEq for CreateIssuingCardShipping
Auto Trait Implementations§
impl Freeze for CreateIssuingCardShipping
impl RefUnwindSafe for CreateIssuingCardShipping
impl Send for CreateIssuingCardShipping
impl Sync for CreateIssuingCardShipping
impl Unpin for CreateIssuingCardShipping
impl UnsafeUnpin for CreateIssuingCardShipping
impl UnwindSafe for CreateIssuingCardShipping
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