pub struct PaymentMethodCardWalletVisaCheckout {
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 PaymentMethodCardWalletVisaCheckout
impl Clone for PaymentMethodCardWalletVisaCheckout
Source§fn clone(&self) -> PaymentMethodCardWalletVisaCheckout
fn clone(&self) -> PaymentMethodCardWalletVisaCheckout
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 FromValueOpt for PaymentMethodCardWalletVisaCheckout
impl FromValueOpt for PaymentMethodCardWalletVisaCheckout
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodCardWalletVisaCheckout
impl RefUnwindSafe for PaymentMethodCardWalletVisaCheckout
impl Send for PaymentMethodCardWalletVisaCheckout
impl Sync for PaymentMethodCardWalletVisaCheckout
impl Unpin for PaymentMethodCardWalletVisaCheckout
impl UnwindSafe for PaymentMethodCardWalletVisaCheckout
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