pub struct MovieBase {Show 13 fields
pub id: u64,
pub title: String,
pub original_title: String,
pub original_language: String,
pub overview: String,
pub release_date: Option<NaiveDate>,
pub poster_path: Option<String>,
pub backdrop_path: Option<String>,
pub adult: bool,
pub popularity: f64,
pub vote_count: u64,
pub vote_average: f64,
pub video: bool,
}Fields§
§id: u64§title: String§original_title: String§original_language: String§overview: String§release_date: Option<NaiveDate>§poster_path: Option<String>§backdrop_path: Option<String>§adult: bool§popularity: f64§vote_count: u64§vote_average: f64§video: boolTrait Implementations§
source§impl<'de> Deserialize<'de> for MovieBase
impl<'de> Deserialize<'de> for MovieBase
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