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