pub struct SteamStoreData {
pub name: String,
pub is_free: bool,
pub short_description: String,
pub header_image: String,
pub website: Option<String>,
pub release_date: Option<String>,
pub content_descriptors: ContentDescriptors,
pub categories: Vec<Category>,
pub genres: Vec<Genre>,
pub required_age: u32,
}Expand description
Detalhes da loja Steam para um aplicativo (jogo).
Fields§
§name: String§is_free: bool§short_description: String§header_image: String§website: Option<String>§release_date: Option<String>§content_descriptors: ContentDescriptors§categories: Vec<Category>§genres: Vec<Genre>§required_age: u32Trait Implementations§
Source§impl Clone for SteamStoreData
impl Clone for SteamStoreData
Source§fn clone(&self) -> SteamStoreData
fn clone(&self) -> SteamStoreData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SteamStoreData
impl Debug for SteamStoreData
Source§impl<'de> Deserialize<'de> for SteamStoreData
impl<'de> Deserialize<'de> for SteamStoreData
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 SteamStoreData
impl RefUnwindSafe for SteamStoreData
impl Send for SteamStoreData
impl Sync for SteamStoreData
impl Unpin for SteamStoreData
impl UnwindSafe for SteamStoreData
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