[][src]Struct gog::gog::ProductDetails

pub struct ProductDetails {
    pub title: String,
    pub is_galaxy_compatible: bool,
    pub id: i64,
    pub image: String,
    pub url: String,
    pub works_on: WorksOn,
    pub category: String,
    pub rating: i32,
    pub is_coming_soon: bool,
    pub is_movie: bool,
    pub is_game: bool,
    pub slug: String,
    pub updates: i64,
    pub is_new: bool,
    pub is_hidden: bool,
}

Details of a product, returned from get_filtered_products

Fields

title: Stringis_galaxy_compatible: boolid: i64image: Stringurl: Stringworks_on: WorksOncategory: Stringrating: i32is_coming_soon: boolis_movie: boolis_game: boolslug: Stringupdates: i64is_new: boolis_hidden: bool

Trait Implementations

impl Debug for ProductDetails
[src]

impl Serialize for ProductDetails
[src]

impl<'de> Deserialize<'de> for ProductDetails
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T