pub struct VisualNovel {Show 26 fields
pub aliases: Option<Vec<String>>,
pub alttitle: Option<String>,
pub average: Option<f32>,
pub description: Option<String>,
pub developers: Option<Vec<VisualNovelDeveloper>>,
pub devstatus: Option<VisualNovelDevStatus>,
pub editions: Option<Vec<VisualNovelEdition>>,
pub extlinks: Option<Vec<ExternalLink>>,
pub id: VisualNovelId,
pub image: Option<VisualNovelImage>,
pub languages: Option<Vec<Language>>,
pub length: Option<VisualNovelLength>,
pub length_minutes: Option<u32>,
pub length_votes: Option<u32>,
pub olang: Option<Language>,
pub platforms: Option<Vec<String>>,
pub rating: Option<f32>,
pub relations: Option<Vec<VisualNovelRelation>>,
pub released: Option<String>,
pub screenshots: Option<Vec<VisualNovelScreenShot>>,
pub staff: Option<Vec<VisualNovelStaff>>,
pub tags: Option<Vec<VisualNovelTag>>,
pub title: Option<String>,
pub titles: Option<Vec<VisualNovelTitle>>,
pub va: Option<Vec<VisualNovelVoiceActor>>,
pub votecount: Option<u32>,
}Fields§
§aliases: Option<Vec<String>>§alttitle: Option<String>§average: Option<f32>§description: Option<String>§developers: Option<Vec<VisualNovelDeveloper>>§devstatus: Option<VisualNovelDevStatus>§editions: Option<Vec<VisualNovelEdition>>§extlinks: Option<Vec<ExternalLink>>§id: VisualNovelId§image: Option<VisualNovelImage>§languages: Option<Vec<Language>>§length: Option<VisualNovelLength>§length_minutes: Option<u32>§length_votes: Option<u32>§olang: Option<Language>§platforms: Option<Vec<String>>§rating: Option<f32>§relations: Option<Vec<VisualNovelRelation>>§released: Option<String>§screenshots: Option<Vec<VisualNovelScreenShot>>§staff: Option<Vec<VisualNovelStaff>>§title: Option<String>§titles: Option<Vec<VisualNovelTitle>>§va: Option<Vec<VisualNovelVoiceActor>>§votecount: Option<u32>Trait Implementations§
Source§impl Clone for VisualNovel
impl Clone for VisualNovel
Source§fn clone(&self) -> VisualNovel
fn clone(&self) -> VisualNovel
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 VisualNovel
impl Debug for VisualNovel
Source§impl<'de> Deserialize<'de> for VisualNovel
impl<'de> Deserialize<'de> for VisualNovel
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 From<CharacterVisualNovel> for VisualNovel
impl From<CharacterVisualNovel> for VisualNovel
Source§fn from(cvn: CharacterVisualNovel) -> Self
fn from(cvn: CharacterVisualNovel) -> Self
Converts to this type from the input type.
Source§impl From<ReleaseVisualNovel> for VisualNovel
impl From<ReleaseVisualNovel> for VisualNovel
Source§fn from(rvn: ReleaseVisualNovel) -> Self
fn from(rvn: ReleaseVisualNovel) -> Self
Converts to this type from the input type.
Source§impl From<VisualNovel> for VisualNovelId
impl From<VisualNovel> for VisualNovelId
Source§fn from(v: VisualNovel) -> Self
fn from(v: VisualNovel) -> Self
Converts to this type from the input type.
Source§impl From<VisualNovelRelation> for VisualNovel
impl From<VisualNovelRelation> for VisualNovel
Source§fn from(v: VisualNovelRelation) -> Self
fn from(v: VisualNovelRelation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VisualNovel
impl RefUnwindSafe for VisualNovel
impl Send for VisualNovel
impl Sync for VisualNovel
impl Unpin for VisualNovel
impl UnsafeUnpin for VisualNovel
impl UnwindSafe for VisualNovel
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