pub struct AppDetail {Show 18 fields
pub app_type: String,
pub name: String,
pub steam_appid: u32,
pub required_age: Value,
pub is_free: bool,
pub detailed_description: String,
pub about_the_game: String,
pub short_description: String,
pub supported_languages: String,
pub header_image: String,
pub website: Option<String>,
pub developers: Vec<String>,
pub publishers: Vec<String>,
pub price_overview: Option<AppPriceOverview>,
pub platforms: Platforms,
pub categories: Option<Vec<Category>>,
pub release_date: ReleaseDate,
pub background: String,
}Expand description
Detailed information about a Steam application.
Fields§
§app_type: String§name: String§steam_appid: u32§required_age: Value§is_free: bool§detailed_description: String§about_the_game: String§short_description: String§supported_languages: String§header_image: String§website: Option<String>§developers: Vec<String>§publishers: Vec<String>§price_overview: Option<AppPriceOverview>§platforms: Platforms§categories: Option<Vec<Category>>§release_date: ReleaseDate§background: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for AppDetail
impl<'de> Deserialize<'de> for AppDetail
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 AppDetail
impl RefUnwindSafe for AppDetail
impl Send for AppDetail
impl Sync for AppDetail
impl Unpin for AppDetail
impl UnsafeUnpin for AppDetail
impl UnwindSafe for AppDetail
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more