#[non_exhaustive]pub enum ReleaseField {
Show 39 variants
AltTitle,
Catalog,
Engine,
ExtlinksId,
ExtlinksLabel,
ExtlinksName,
ExtlinksUrl,
Freeware,
Gtin,
HasEro,
Id,
ImagesId,
ImagesLanguages,
ImagesPhoto,
ImagesType,
ImagesUrl,
ImagesVn,
LanguagesLang,
LanguagesLatin,
LanguagesMain,
LanguagesMtl,
LanguagesTitle,
MediaMedium,
MediaQty,
MinAge,
Notes,
Official,
Patch,
Platforms,
ProducersDeveloper,
ProducersId,
ProducersPublisher,
Released,
Resolution,
Title,
Uncensored,
VisualNovelId,
VisualNovelRType,
Voiced,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AltTitle
Catalog
Engine
ExtlinksId
ExtlinksLabel
ExtlinksName
ExtlinksUrl
Freeware
Gtin
HasEro
Id
ImagesId
ImagesLanguages
ImagesPhoto
ImagesType
ImagesUrl
ImagesVn
LanguagesLang
LanguagesLatin
LanguagesMain
LanguagesMtl
LanguagesTitle
MediaMedium
MediaQty
MinAge
Notes
Official
Patch
Platforms
ProducersDeveloper
ProducersId
ProducersPublisher
Released
Resolution
Title
Uncensored
VisualNovelId
VisualNovelRType
Voiced
Implementations§
Source§impl ReleaseField
impl ReleaseField
pub fn all() -> FieldSet<ReleaseField>
pub fn none() -> FieldSet<ReleaseField>
pub fn into_field_set(self) -> FieldSet<ReleaseField>
Trait Implementations§
Source§impl Clone for ReleaseField
impl Clone for ReleaseField
Source§fn clone(&self) -> ReleaseField
fn clone(&self) -> ReleaseField
Returns a duplicate of the value. Read more
1.0.0 · 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 ReleaseField
impl Debug for ReleaseField
Source§impl<'de> Deserialize<'de> for ReleaseField
impl<'de> Deserialize<'de> for ReleaseField
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
Source§impl Display for ReleaseField
impl Display for ReleaseField
Source§impl From<ReleaseField> for FieldSet<ReleaseField>
impl From<ReleaseField> for FieldSet<ReleaseField>
Source§fn from(field: ReleaseField) -> Self
fn from(field: ReleaseField) -> Self
Converts to this type from the input type.
Source§impl FromStr for ReleaseField
impl FromStr for ReleaseField
Source§impl Serialize for ReleaseField
impl Serialize for ReleaseField
Source§impl TryFrom<&str> for ReleaseField
impl TryFrom<&str> for ReleaseField
Source§impl VariantArray for ReleaseField
impl VariantArray for ReleaseField
impl Copy for ReleaseField
impl QueryField for ReleaseField
Auto Trait Implementations§
impl Freeze for ReleaseField
impl RefUnwindSafe for ReleaseField
impl Send for ReleaseField
impl Sync for ReleaseField
impl Unpin for ReleaseField
impl UnsafeUnpin for ReleaseField
impl UnwindSafe for ReleaseField
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 moreSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.