pub struct WishlistGame {Show 13 fields
pub id: String,
pub name: String,
pub cover_url: Option<String>,
pub store_url: Option<String>,
pub store_platform: Option<String>,
pub itad_id: Option<String>,
pub current_price: Option<f64>,
pub normal_price: Option<f64>,
pub lowest_price: Option<f64>,
pub currency: Option<String>,
pub on_sale: bool,
pub voucher: Option<String>,
pub added_at: Option<String>,
}Expand description
Jogo na lista de desejos (wishlist) com tracking de preços.
Representa um jogo adicionado à wishlist do usuário, incluindo informações de preço, disponibilidade e vouchers.
Fields§
§id: String§name: String§cover_url: Option<String>§store_url: Option<String>§store_platform: Option<String>§itad_id: Option<String>§current_price: Option<f64>§normal_price: Option<f64>§lowest_price: Option<f64>§currency: Option<String>§on_sale: bool§voucher: Option<String>§added_at: Option<String>Trait Implementations§
Source§impl Debug for WishlistGame
impl Debug for WishlistGame
Source§impl<'de> Deserialize<'de> for WishlistGame
impl<'de> Deserialize<'de> for WishlistGame
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 WishlistGame
impl RefUnwindSafe for WishlistGame
impl Send for WishlistGame
impl Sync for WishlistGame
impl Unpin for WishlistGame
impl UnwindSafe for WishlistGame
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