pub struct Character {Show 19 fields
pub age: Option<u32>,
pub aliases: Option<Vec<String>>,
pub birthday: Option<CharacterBirthday>,
pub blood_type: Option<String>,
pub bust: Option<u32>,
pub cup: Option<String>,
pub description: Option<String>,
pub gender: Option<CharacterGender>,
pub height: Option<u32>,
pub hips: Option<u32>,
pub id: CharacterId,
pub image: Option<CharacterImage>,
pub name: Option<String>,
pub original: Option<String>,
pub sex: Option<CharacterSex>,
pub traits: Option<Vec<CharacterTrait>>,
pub vns: Option<Vec<CharacterVisualNovel>>,
pub waist: Option<u32>,
pub weight: Option<u32>,
}Fields§
§age: Option<u32>§aliases: Option<Vec<String>>§birthday: Option<CharacterBirthday>§blood_type: Option<String>§bust: Option<u32>§cup: Option<String>§description: Option<String>§gender: Option<CharacterGender>§height: Option<u32>§hips: Option<u32>§id: CharacterId§image: Option<CharacterImage>§name: Option<String>§original: Option<String>§sex: Option<CharacterSex>§traits: Option<Vec<CharacterTrait>>§vns: Option<Vec<CharacterVisualNovel>>§waist: Option<u32>§weight: Option<u32>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Character
impl<'de> Deserialize<'de> for Character
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<Character> for CharacterId
impl From<Character> for CharacterId
Auto Trait Implementations§
impl Freeze for Character
impl RefUnwindSafe for Character
impl Send for Character
impl Sync for Character
impl Unpin for Character
impl UnsafeUnpin for Character
impl UnwindSafe for Character
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