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