pub struct PaginatedExportTemplateList {
pub count: i32,
pub next: Option<Option<String>>,
pub previous: Option<Option<String>>,
pub results: Vec<ExportTemplate>,
}Fields§
§count: i32§next: Option<Option<String>>§previous: Option<Option<String>>§results: Vec<ExportTemplate>Implementations§
Source§impl PaginatedExportTemplateList
impl PaginatedExportTemplateList
pub fn new( count: i32, results: Vec<ExportTemplate>, ) -> PaginatedExportTemplateList
Trait Implementations§
Source§impl Clone for PaginatedExportTemplateList
impl Clone for PaginatedExportTemplateList
Source§fn clone(&self) -> PaginatedExportTemplateList
fn clone(&self) -> PaginatedExportTemplateList
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 PaginatedExportTemplateList
impl Debug for PaginatedExportTemplateList
Source§impl Default for PaginatedExportTemplateList
impl Default for PaginatedExportTemplateList
Source§fn default() -> PaginatedExportTemplateList
fn default() -> PaginatedExportTemplateList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedExportTemplateList
impl<'de> Deserialize<'de> for PaginatedExportTemplateList
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
impl StructuralPartialEq for PaginatedExportTemplateList
Auto Trait Implementations§
impl Freeze for PaginatedExportTemplateList
impl RefUnwindSafe for PaginatedExportTemplateList
impl Send for PaginatedExportTemplateList
impl Sync for PaginatedExportTemplateList
impl Unpin for PaginatedExportTemplateList
impl UnwindSafe for PaginatedExportTemplateList
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