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