pub struct Person {
pub inner: PersonShort,
pub adult: bool,
pub also_known_as: Vec<String>,
pub biography: String,
pub birthday: NaiveDate,
pub deathday: Option<NaiveDate>,
pub homepage: Option<String>,
pub imdb_id: String,
pub known_for_department: String,
pub popularity: f64,
pub place_of_birth: Option<String>,
pub profile_path: Option<String>,
}Fields
inner: PersonShortadult: boolalso_known_as: Vec<String>biography: Stringbirthday: NaiveDatedeathday: Option<NaiveDate>homepage: Option<String>imdb_id: Stringknown_for_department: Stringpopularity: f64place_of_birth: Option<String>profile_path: Option<String>Trait Implementations
sourceimpl<'de> Deserialize<'de> for Person
impl<'de> Deserialize<'de> for Person
sourcefn 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 Person
Auto Trait Implementations
impl RefUnwindSafe for Person
impl Send for Person
impl Sync for Person
impl Unpin for Person
impl UnwindSafe for Person
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more