Struct tmdb_api::tvshow::EpisodeShort
source · pub struct EpisodeShort {
pub air_date: NaiveDate,
pub episode_number: u64,
pub id: u64,
pub name: String,
pub overview: Option<String>,
pub production_code: String,
pub season_number: u64,
pub still_path: Option<String>,
pub vote_average: f64,
pub vote_count: u64,
}Fields§
§air_date: NaiveDate§episode_number: u64§id: u64§name: String§overview: Option<String>§production_code: String§season_number: u64§still_path: Option<String>§vote_average: f64§vote_count: u64Trait Implementations§
source§impl Clone for EpisodeShort
impl Clone for EpisodeShort
source§fn clone(&self) -> EpisodeShort
fn clone(&self) -> EpisodeShort
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for EpisodeShort
impl Debug for EpisodeShort
source§impl<'de> Deserialize<'de> for EpisodeShort
impl<'de> Deserialize<'de> for EpisodeShort
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<EpisodeShort> for EpisodeShort
impl PartialEq<EpisodeShort> for EpisodeShort
source§fn eq(&self, other: &EpisodeShort) -> bool
fn eq(&self, other: &EpisodeShort) -> bool
This method tests for
self and other values to be equal, and is used
by ==.