pub struct AgreementListData {
pub total: Option<i64>,
pub page_no: Option<i32>,
pub page_size: Option<i32>,
pub list: Option<Vec<AgreementQueryData>>,
}Fields§
§total: Option<i64>§page_no: Option<i32>§page_size: Option<i32>§list: Option<Vec<AgreementQueryData>>Trait Implementations§
Source§impl Clone for AgreementListData
impl Clone for AgreementListData
Source§fn clone(&self) -> AgreementListData
fn clone(&self) -> AgreementListData
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 AgreementListData
impl Debug for AgreementListData
Source§impl<'de> Deserialize<'de> for AgreementListData
impl<'de> Deserialize<'de> for AgreementListData
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 AgreementListData
impl RefUnwindSafe for AgreementListData
impl Send for AgreementListData
impl Sync for AgreementListData
impl Unpin for AgreementListData
impl UnsafeUnpin for AgreementListData
impl UnwindSafe for AgreementListData
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