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
source§impl PartialEq for MovieBase
impl PartialEq for MovieBase
impl StructuralPartialEq for MovieBase
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§
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