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