pub struct CollectionGamesResponse {
pub page: u64,
pub per_page: u64,
pub collection_games: Vec<CollectionGameItem>,
}
Fields§
§page: u64
§per_page: u64
§collection_games: Vec<CollectionGameItem>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CollectionGamesResponse
impl<'de> Deserialize<'de> for CollectionGamesResponse
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
Auto Trait Implementations§
impl Freeze for CollectionGamesResponse
impl RefUnwindSafe for CollectionGamesResponse
impl Send for CollectionGamesResponse
impl Sync for CollectionGamesResponse
impl Unpin for CollectionGamesResponse
impl UnwindSafe for CollectionGamesResponse
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