pub struct AgreementPayQueryData {
pub trade_no: Option<String>,
pub out_trade_no: Option<String>,
pub status: Option<String>,
pub amount: Option<String>,
pub crypto_payment: Option<String>,
pub pay_time: Option<i64>,
pub refund_amount: Option<String>,
pub refund_no: Option<String>,
pub out_refund_no: Option<String>,
pub refund_time: Option<i64>,
pub failure_reason: Option<String>,
}Fields§
§trade_no: Option<String>§out_trade_no: Option<String>§status: Option<String>§amount: Option<String>§crypto_payment: Option<String>§pay_time: Option<i64>§refund_amount: Option<String>§refund_no: Option<String>§out_refund_no: Option<String>§refund_time: Option<i64>§failure_reason: Option<String>Trait Implementations§
Source§impl Clone for AgreementPayQueryData
impl Clone for AgreementPayQueryData
Source§fn clone(&self) -> AgreementPayQueryData
fn clone(&self) -> AgreementPayQueryData
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 AgreementPayQueryData
impl Debug for AgreementPayQueryData
Source§impl<'de> Deserialize<'de> for AgreementPayQueryData
impl<'de> Deserialize<'de> for AgreementPayQueryData
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 AgreementPayQueryData
impl RefUnwindSafe for AgreementPayQueryData
impl Send for AgreementPayQueryData
impl Sync for AgreementPayQueryData
impl Unpin for AgreementPayQueryData
impl UnsafeUnpin for AgreementPayQueryData
impl UnwindSafe for AgreementPayQueryData
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