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