pub struct Platform {Show 14 fields
pub id: usize,
pub abbreviation: String,
pub alternative_name: String,
pub category: PlatformCategory,
pub created_at: u64,
pub generation: usize,
pub name: String,
pub platform_logo: usize,
pub product_faimily: usize,
pub slug: String,
pub summary: String,
pub url: String,
pub versions: Vec<u32>,
pub websites: Vec<u32>,
}
Fields§
§id: usize
§abbreviation: String
§alternative_name: String
§category: PlatformCategory
§created_at: u64
§generation: usize
§name: String
§platform_logo: usize
§product_faimily: usize
§slug: String
§summary: String
§url: String
§versions: Vec<u32>
§websites: Vec<u32>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Platform
impl<'de> Deserialize<'de> for Platform
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 Platform
impl RefUnwindSafe for Platform
impl Send for Platform
impl Sync for Platform
impl Unpin for Platform
impl UnwindSafe for Platform
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