pub struct VnEdition {
pub eid: Option<u16>,
pub lang: Option<Language>,
pub name: Option<String>,
pub official: Option<bool>,
}Fields§
§eid: Option<u16>Edition identifier local to the visual novel Not stable across edits of the VN entry Only used for organizing the staff listing
lang: Option<Language>§name: Option<String>English name / label identifying this edition
official: Option<bool>Whether this edition is official
Trait Implementations§
source§impl<'de> Deserialize<'de> for VnEdition
impl<'de> Deserialize<'de> for VnEdition
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 VnEdition
impl RefUnwindSafe for VnEdition
impl Send for VnEdition
impl Sync for VnEdition
impl Unpin for VnEdition
impl UnwindSafe for VnEdition
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