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: MovieBasebudget: u64genres: Vec<Genre>homepage: Option<String>imdb_id: Option<String>production_companies: Vec<CompanyShort>production_countries: Vec<Country>revenue: u64runtime: Option<u64>spoken_languages: Vec<Language>status: Statustagline: Option<String>Trait Implementations
sourceimpl<'de> Deserialize<'de> for Movie
impl<'de> Deserialize<'de> for Movie
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
Auto Trait Implementations
impl RefUnwindSafe for Movie
impl Send for Movie
impl Sync for Movie
impl Unpin for Movie
impl UnwindSafe for Movie
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