pub struct GetRomByMetadataProvider {
pub igdb_id: Option<i64>,
pub moby_id: Option<i64>,
pub ss_id: Option<i64>,
pub ra_id: Option<i64>,
pub launchbox_id: Option<i64>,
pub hasheous_id: Option<i64>,
pub tgdb_id: Option<i64>,
pub flashpoint_id: Option<String>,
pub hltb_id: Option<i64>,
}Expand description
GET /api/roms/by-metadata-provider
Fields§
§igdb_id: Option<i64>§moby_id: Option<i64>§ss_id: Option<i64>§ra_id: Option<i64>§launchbox_id: Option<i64>§hasheous_id: Option<i64>§tgdb_id: Option<i64>§flashpoint_id: Option<String>§hltb_id: Option<i64>Trait Implementations§
Source§impl Clone for GetRomByMetadataProvider
impl Clone for GetRomByMetadataProvider
Source§fn clone(&self) -> GetRomByMetadataProvider
fn clone(&self) -> GetRomByMetadataProvider
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 GetRomByMetadataProvider
impl Debug for GetRomByMetadataProvider
Source§impl Default for GetRomByMetadataProvider
impl Default for GetRomByMetadataProvider
Source§fn default() -> GetRomByMetadataProvider
fn default() -> GetRomByMetadataProvider
Returns the “default value” for a type. Read more
Source§impl Endpoint for GetRomByMetadataProvider
impl Endpoint for GetRomByMetadataProvider
Source§type Output = Value
type Output = Value
The expected output type of this endpoint, which must be deserializable from JSON.
Source§fn method(&self) -> &'static str
fn method(&self) -> &'static str
Returns the HTTP method (e.g., “GET”, “POST”, “PUT”, “DELETE”).
Auto Trait Implementations§
impl Freeze for GetRomByMetadataProvider
impl RefUnwindSafe for GetRomByMetadataProvider
impl Send for GetRomByMetadataProvider
impl Sync for GetRomByMetadataProvider
impl Unpin for GetRomByMetadataProvider
impl UnsafeUnpin for GetRomByMetadataProvider
impl UnwindSafe for GetRomByMetadataProvider
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