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: PersonShort§adult: bool§also_known_as: Vec<String>§biography: String§birthday: NaiveDate§deathday: Option<NaiveDate>§homepage: Option<String>§imdb_id: String§known_for_department: String§popularity: f64§place_of_birth: Option<String>§profile_path: Option<String>Trait Implementations§
source§impl<'de> Deserialize<'de> for Person
impl<'de> Deserialize<'de> for Person
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