pub struct PaymentIntentNextActionWechatPayRedirectToAndroidApp {
pub app_id: String,
pub nonce_str: String,
pub package: String,
pub partner_id: String,
pub prepay_id: String,
pub sign: String,
pub timestamp: String,
}
Fields§
§app_id: String
app_id is the APP ID registered on WeChat open platform
nonce_str: String
nonce_str is a random string
package: String
package is static value
partner_id: String
an unique merchant ID assigned by WeChat Pay
prepay_id: String
an unique trading ID assigned by WeChat Pay
sign: String
A signature
timestamp: String
Specifies the current time in epoch format
Trait Implementations§
Source§impl Clone for PaymentIntentNextActionWechatPayRedirectToAndroidApp
impl Clone for PaymentIntentNextActionWechatPayRedirectToAndroidApp
Source§fn clone(&self) -> PaymentIntentNextActionWechatPayRedirectToAndroidApp
fn clone(&self) -> PaymentIntentNextActionWechatPayRedirectToAndroidApp
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 PaymentIntentNextActionWechatPayRedirectToAndroidApp
impl FromValueOpt for PaymentIntentNextActionWechatPayRedirectToAndroidApp
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentIntentNextActionWechatPayRedirectToAndroidApp
impl RefUnwindSafe for PaymentIntentNextActionWechatPayRedirectToAndroidApp
impl Send for PaymentIntentNextActionWechatPayRedirectToAndroidApp
impl Sync for PaymentIntentNextActionWechatPayRedirectToAndroidApp
impl Unpin for PaymentIntentNextActionWechatPayRedirectToAndroidApp
impl UnwindSafe for PaymentIntentNextActionWechatPayRedirectToAndroidApp
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