pub struct Character {
pub _id: String,
pub height: Option<String>,
pub gender: Option<String>,
pub birth: Option<String>,
pub spouse: Option<String>,
pub death: Option<String>,
pub realm: Option<String>,
pub hair: Option<String>,
pub name: String,
pub wiki_url: Option<String>,
}
Fields§
§_id: String
§height: Option<String>
§gender: Option<String>
§birth: Option<String>
§spouse: Option<String>
§death: Option<String>
§realm: Option<String>
§hair: Option<String>
§name: String
§wiki_url: Option<String>
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
impl StructuralPartialEq for Character
Auto Trait Implementations§
impl Freeze for Character
impl RefUnwindSafe for Character
impl Send for Character
impl Sync for Character
impl Unpin 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