pub struct RomMatchFields {
pub igdb_id: Option<i64>,
pub moby_id: Option<i64>,
pub ss_id: Option<i64>,
pub launchbox_id: Option<i64>,
pub flashpoint_id: Option<String>,
pub sgdb_id: Option<i64>,
pub ra_id: Option<i64>,
pub hasheous_id: Option<i64>,
pub tgdb_id: Option<i64>,
pub hltb_id: Option<i64>,
pub libretro_id: Option<String>,
}Expand description
Provider IDs to send in PUT /api/roms/{id} when applying a search match.
Fields§
§igdb_id: Option<i64>§moby_id: Option<i64>§ss_id: Option<i64>§launchbox_id: Option<i64>§flashpoint_id: Option<String>§sgdb_id: Option<i64>§ra_id: Option<i64>§hasheous_id: Option<i64>§tgdb_id: Option<i64>§hltb_id: Option<i64>§libretro_id: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for RomMatchFields
impl Clone for RomMatchFields
Source§fn clone(&self) -> RomMatchFields
fn clone(&self) -> RomMatchFields
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RomMatchFields
impl Debug for RomMatchFields
Source§impl Default for RomMatchFields
impl Default for RomMatchFields
Source§fn default() -> RomMatchFields
fn default() -> RomMatchFields
Returns the “default value” for a type. Read more
impl Eq for RomMatchFields
Source§impl PartialEq for RomMatchFields
impl PartialEq for RomMatchFields
Source§impl Serialize for RomMatchFields
impl Serialize for RomMatchFields
impl StructuralPartialEq for RomMatchFields
Auto Trait Implementations§
impl Freeze for RomMatchFields
impl RefUnwindSafe for RomMatchFields
impl Send for RomMatchFields
impl Sync for RomMatchFields
impl Unpin for RomMatchFields
impl UnsafeUnpin for RomMatchFields
impl UnwindSafe for RomMatchFields
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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