[][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: Option<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: Option<i64>is_new: boolis_hidden: bool

Trait Implementations

impl Debug for ProductDetails[src]

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

impl Serialize for ProductDetails[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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