[][src]Struct gog::gog::UnownedProductDetails

pub struct UnownedProductDetails {
    pub price: Price,
    pub is_discounted: bool,
    pub is_in_development: bool,
    pub id: i64,
    pub release_date: i64,
    pub availability: Availability,
    pub buyable: bool,
    pub sales_visibility: SalesVisibility,
    pub title: String,
    pub image: String,
    pub url: String,
    pub support_url: String,
    pub forum_url: String,
    pub works_on: WorksOn,
    pub category: String,
    pub original_category: String,
    pub rating: i64,
    pub product_type: i64,
    pub is_coming_soon: bool,
    pub is_price_visible: bool,
    pub is_movie: bool,
    pub is_game: bool,
    pub slug: String,
}

Details of a product, returned from get_products

Fields

price: Priceis_discounted: boolis_in_development: boolid: i64release_date: i64availability: Availabilitybuyable: boolsales_visibility: SalesVisibilitytitle: Stringimage: Stringurl: Stringsupport_url: Stringforum_url: Stringworks_on: WorksOncategory: Stringoriginal_category: Stringrating: i64product_type: i64is_coming_soon: boolis_price_visible: boolis_movie: boolis_game: boolslug: String

Trait Implementations

impl Debug for UnownedProductDetails
[src]

impl Serialize for UnownedProductDetails
[src]

impl<'de> Deserialize<'de> for UnownedProductDetails
[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, 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> BorrowMut for T where
    T: ?Sized
[src]

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