[][src]Struct gog::gog::GameDetails

pub struct GameDetails {
    pub title: String,
    pub background_image: String,
    pub cd_key: Option<String>,
    pub text_information: String,
    pub downloads: Downloads,
    pub extras: Vec<Extra>,
    pub dlcs: Value,
    pub tags: Vec<Tag>,
    pub is_pre_order: bool,
    pub release_timestamp: i64,
    pub messages: Vec<Value>,
    pub changelog: Option<String>,
    pub forum_link: String,
    pub is_base_product_missing: bool,
    pub missing_base_product: Option<Value>,
}

All of the details of a specific game

Fields

title: Stringbackground_image: Stringcd_key: Option<String>text_information: Stringdownloads: Downloadsextras: Vec<Extra>dlcs: Valuetags: Vec<Tag>is_pre_order: boolrelease_timestamp: i64messages: Vec<Value>changelog: Option<String>forum_link: Stringis_base_product_missing: boolmissing_base_product: Option<Value>

Trait Implementations

impl Debug for GameDetails
[src]

impl Serialize for GameDetails
[src]

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

Auto Trait Implementations

impl Send for GameDetails

impl Sync for GameDetails

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