pub struct PaymentMethodDetailsAlipay {
pub buyer_id: Option<String>,
pub fingerprint: Option<String>,
pub transaction_id: Option<String>,
}Fields§
§buyer_id: Option<String>Uniquely identifies this particular Alipay account. You can use this attribute to check whether two Alipay accounts are the same.
fingerprint: Option<String>Uniquely identifies this particular Alipay account. You can use this attribute to check whether two Alipay accounts are the same.
transaction_id: Option<String>Transaction ID of this particular Alipay transaction.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsAlipay
impl Clone for PaymentMethodDetailsAlipay
Source§fn clone(&self) -> PaymentMethodDetailsAlipay
fn clone(&self) -> PaymentMethodDetailsAlipay
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 PaymentMethodDetailsAlipay
impl Debug for PaymentMethodDetailsAlipay
impl Eq for PaymentMethodDetailsAlipay
Source§impl FromValueOpt for PaymentMethodDetailsAlipay
impl FromValueOpt for PaymentMethodDetailsAlipay
fn from_value(v: Value) -> Option<Self>
impl StructuralPartialEq for PaymentMethodDetailsAlipay
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsAlipay
impl RefUnwindSafe for PaymentMethodDetailsAlipay
impl Send for PaymentMethodDetailsAlipay
impl Sync for PaymentMethodDetailsAlipay
impl Unpin for PaymentMethodDetailsAlipay
impl UnsafeUnpin for PaymentMethodDetailsAlipay
impl UnwindSafe for PaymentMethodDetailsAlipay
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