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 moreSource§impl FromValueOpt for PaymentMethodCardWalletMasterpass
impl FromValueOpt for PaymentMethodCardWalletMasterpass
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodCardWalletMasterpass
impl PartialEq for PaymentMethodCardWalletMasterpass
Source§fn eq(&self, other: &PaymentMethodCardWalletMasterpass) -> bool
fn eq(&self, other: &PaymentMethodCardWalletMasterpass) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodCardWalletMasterpass
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