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: u64title: Stringoriginal_title: Stringoriginal_language: Stringoverview: Stringrelease_date: Option<NaiveDate>poster_path: Option<String>backdrop_path: Option<String>adult: boolpopularity: f64vote_count: u64vote_average: f64video: boolTrait Implementations
sourceimpl<'de> Deserialize<'de> for MovieBase
impl<'de> Deserialize<'de> for MovieBase
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 MovieBase
impl Send for MovieBase
impl Sync for MovieBase
impl Unpin for MovieBase
impl UnwindSafe for MovieBase
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