pub struct WxTransferResource {
pub create_time: String,
pub mchid: String,
pub openid: String,
pub out_bill_no: String,
pub state: TransferBillStatus,
pub transfer_amount: u64,
pub transfer_bill_no: String,
pub update_time: String,
}Expand description
转账提现回调,#resource解密后字段
Fields§
§create_time: String§mchid: String§openid: String§out_bill_no: String§state: TransferBillStatusSUCCESS
transfer_amount: u64§transfer_bill_no: String§update_time: StringTrait Implementations§
Source§impl Clone for WxTransferResource
impl Clone for WxTransferResource
Source§fn clone(&self) -> WxTransferResource
fn clone(&self) -> WxTransferResource
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 Debug for WxTransferResource
impl Debug for WxTransferResource
Source§impl Default for WxTransferResource
impl Default for WxTransferResource
Source§fn default() -> WxTransferResource
fn default() -> WxTransferResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WxTransferResource
impl<'de> Deserialize<'de> for WxTransferResource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WxTransferResource
impl RefUnwindSafe for WxTransferResource
impl Send for WxTransferResource
impl Sync for WxTransferResource
impl Unpin for WxTransferResource
impl UnwindSafe for WxTransferResource
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