pub struct Movie {
pub inner: MovieBase,
pub budget: u64,
pub genres: Vec<Genre>,
pub homepage: Option<String>,
pub imdb_id: Option<String>,
pub production_companies: Vec<CompanyShort>,
pub production_countries: Vec<Country>,
pub revenue: u64,
pub runtime: Option<u64>,
pub spoken_languages: Vec<Language>,
pub status: Status,
pub tagline: Option<String>,
}Fields§
§inner: MovieBase§budget: u64§genres: Vec<Genre>§homepage: Option<String>§imdb_id: Option<String>§production_companies: Vec<CompanyShort>§production_countries: Vec<Country>§revenue: u64§runtime: Option<u64>§spoken_languages: Vec<Language>§status: Status§tagline: Option<String>Trait Implementations§
source§impl<'de> Deserialize<'de> for Movie
impl<'de> Deserialize<'de> for Movie
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