pub struct Movie {Show 13 fields
pub inner: MovieBase,
pub budget: u64,
pub genres: Vec<Genre>,
pub homepage: Option<String>,
pub imdb_id: Option<String>,
pub belongs_to_collection: Option<CollectionBase>,
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>§belongs_to_collection: Option<CollectionBase>§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
source§impl PartialEq for Movie
impl PartialEq for Movie
impl StructuralPartialEq for Movie
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§
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