pub struct Rom {Show 20 fields
pub id: u64,
pub platform_id: u64,
pub platform_slug: Option<String>,
pub platform_fs_slug: Option<String>,
pub platform_custom_name: Option<String>,
pub platform_display_name: Option<String>,
pub fs_name: String,
pub fs_name_no_tags: String,
pub fs_name_no_ext: String,
pub fs_extension: String,
pub fs_path: String,
pub fs_size_bytes: u64,
pub name: String,
pub slug: Option<String>,
pub summary: Option<String>,
pub path_cover_small: Option<String>,
pub path_cover_large: Option<String>,
pub url_cover: Option<String>,
pub is_unidentified: bool,
pub is_identified: bool,
}Fields§
§id: u64§platform_id: u64§platform_slug: Option<String>§platform_fs_slug: Option<String>§platform_custom_name: Option<String>§platform_display_name: Option<String>§fs_name: String§fs_name_no_ext: String§fs_extension: String§fs_path: String§fs_size_bytes: u64§name: String§slug: Option<String>§summary: Option<String>§path_cover_small: Option<String>§path_cover_large: Option<String>§url_cover: Option<String>§is_unidentified: bool§is_identified: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for Rom
impl<'de> Deserialize<'de> for Rom
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 Rom
impl RefUnwindSafe for Rom
impl Send for Rom
impl Sync for Rom
impl Unpin for Rom
impl UnsafeUnpin for Rom
impl UnwindSafe for Rom
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