pub struct PaymentMethodCardWalletMasterpass {
pub billing_address: Option<Address>,
pub email: Option<String>,
pub name: Option<String>,
pub shipping_address: Option<Address>,
}Fields§
§billing_address: Option<Address>Owner’s verified billing address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
email: Option<String>Owner’s verified email. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
name: Option<String>Owner’s verified full name. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
shipping_address: Option<Address>Owner’s verified shipping address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
Trait Implementations§
Source§impl Clone for PaymentMethodCardWalletMasterpass
impl Clone for PaymentMethodCardWalletMasterpass
Source§fn clone(&self) -> PaymentMethodCardWalletMasterpass
fn clone(&self) -> PaymentMethodCardWalletMasterpass
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 moreimpl Eq for PaymentMethodCardWalletMasterpass
Source§impl FromValueOpt for PaymentMethodCardWalletMasterpass
impl FromValueOpt for PaymentMethodCardWalletMasterpass
fn from_value(v: Value) -> Option<Self>
impl StructuralPartialEq for PaymentMethodCardWalletMasterpass
Auto Trait Implementations§
impl Freeze for PaymentMethodCardWalletMasterpass
impl RefUnwindSafe for PaymentMethodCardWalletMasterpass
impl Send for PaymentMethodCardWalletMasterpass
impl Sync for PaymentMethodCardWalletMasterpass
impl Unpin for PaymentMethodCardWalletMasterpass
impl UnsafeUnpin for PaymentMethodCardWalletMasterpass
impl UnwindSafe for PaymentMethodCardWalletMasterpass
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