pub struct PaginatedDataExportList {
pub pagination: Pagination,
pub results: Vec<DataExport>,
pub autocomplete: HashMap<String, Value>,
}Fields§
§pagination: Pagination§results: Vec<DataExport>§autocomplete: HashMap<String, Value>Implementations§
Source§impl PaginatedDataExportList
impl PaginatedDataExportList
pub fn new( pagination: Pagination, results: Vec<DataExport>, autocomplete: HashMap<String, Value>, ) -> PaginatedDataExportList
Trait Implementations§
Source§impl Clone for PaginatedDataExportList
impl Clone for PaginatedDataExportList
Source§fn clone(&self) -> PaginatedDataExportList
fn clone(&self) -> PaginatedDataExportList
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 PaginatedDataExportList
impl Debug for PaginatedDataExportList
Source§impl Default for PaginatedDataExportList
impl Default for PaginatedDataExportList
Source§fn default() -> PaginatedDataExportList
fn default() -> PaginatedDataExportList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedDataExportList
impl<'de> Deserialize<'de> for PaginatedDataExportList
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
Source§impl PartialEq for PaginatedDataExportList
impl PartialEq for PaginatedDataExportList
Source§impl Serialize for PaginatedDataExportList
impl Serialize for PaginatedDataExportList
impl StructuralPartialEq for PaginatedDataExportList
Auto Trait Implementations§
impl Freeze for PaginatedDataExportList
impl RefUnwindSafe for PaginatedDataExportList
impl Send for PaginatedDataExportList
impl Sync for PaginatedDataExportList
impl Unpin for PaginatedDataExportList
impl UnsafeUnpin for PaginatedDataExportList
impl UnwindSafe for PaginatedDataExportList
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