pub struct PaginatedInterfaceTemplateList {
pub count: i32,
pub next: Option<Option<String>>,
pub previous: Option<Option<String>>,
pub results: Vec<InterfaceTemplate>,
}Fields§
§count: i32§next: Option<Option<String>>§previous: Option<Option<String>>§results: Vec<InterfaceTemplate>Implementations§
Source§impl PaginatedInterfaceTemplateList
impl PaginatedInterfaceTemplateList
pub fn new( count: i32, results: Vec<InterfaceTemplate>, ) -> PaginatedInterfaceTemplateList
Trait Implementations§
Source§impl Clone for PaginatedInterfaceTemplateList
impl Clone for PaginatedInterfaceTemplateList
Source§fn clone(&self) -> PaginatedInterfaceTemplateList
fn clone(&self) -> PaginatedInterfaceTemplateList
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 Default for PaginatedInterfaceTemplateList
impl Default for PaginatedInterfaceTemplateList
Source§fn default() -> PaginatedInterfaceTemplateList
fn default() -> PaginatedInterfaceTemplateList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedInterfaceTemplateList
impl<'de> Deserialize<'de> for PaginatedInterfaceTemplateList
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 PaginatedInterfaceTemplateList
impl PartialEq for PaginatedInterfaceTemplateList
Source§fn eq(&self, other: &PaginatedInterfaceTemplateList) -> bool
fn eq(&self, other: &PaginatedInterfaceTemplateList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PaginatedInterfaceTemplateList
Auto Trait Implementations§
impl Freeze for PaginatedInterfaceTemplateList
impl RefUnwindSafe for PaginatedInterfaceTemplateList
impl Send for PaginatedInterfaceTemplateList
impl Sync for PaginatedInterfaceTemplateList
impl Unpin for PaginatedInterfaceTemplateList
impl UnwindSafe for PaginatedInterfaceTemplateList
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