pub struct AgreementQueryData {
pub agreement_no: Option<String>,
pub external_agreement_no: Option<String>,
pub user_id: Option<String>,
pub merchant_user_id: Option<String>,
pub status: Option<String>,
pub sign_time: Option<i64>,
pub valid_time: Option<i64>,
pub single_limit: Option<String>,
pub period_limits: Option<String>,
pub used_quota: Option<String>,
}Fields§
§agreement_no: Option<String>§external_agreement_no: Option<String>§user_id: Option<String>§merchant_user_id: Option<String>§status: Option<String>§sign_time: Option<i64>§valid_time: Option<i64>§single_limit: Option<String>§period_limits: Option<String>§used_quota: Option<String>Trait Implementations§
Source§impl Clone for AgreementQueryData
impl Clone for AgreementQueryData
Source§fn clone(&self) -> AgreementQueryData
fn clone(&self) -> AgreementQueryData
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 AgreementQueryData
impl Debug for AgreementQueryData
Source§impl<'de> Deserialize<'de> for AgreementQueryData
impl<'de> Deserialize<'de> for AgreementQueryData
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 AgreementQueryData
impl RefUnwindSafe for AgreementQueryData
impl Send for AgreementQueryData
impl Sync for AgreementQueryData
impl Unpin for AgreementQueryData
impl UnsafeUnpin for AgreementQueryData
impl UnwindSafe for AgreementQueryData
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