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
source§impl PartialEq for Person
impl PartialEq for Person
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§
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