pub struct SteamGame {
pub appid: u32,
pub name: String,
pub playtime_forever: i32,
pub img_icon_url: Option<String>,
pub rtime_last_played: i64,
}Expand description
Estrutura auxiliar para representar um jogo na biblioteca Steam.
Fields§
§appid: u32§name: String§playtime_forever: i32§img_icon_url: Option<String>§rtime_last_played: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for SteamGame
impl<'de> Deserialize<'de> for SteamGame
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 SteamGame
impl RefUnwindSafe for SteamGame
impl Send for SteamGame
impl Sync for SteamGame
impl Unpin for SteamGame
impl UnwindSafe for SteamGame
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