Struct tmdb_async::TV
source · pub struct TV {Show 29 fields
pub id: u32,
pub backdrop_path: Option<String>,
pub created_by: Vec<TVCreator>,
pub episode_run_time: Vec<u16>,
pub first_air_date: Date,
pub genres: Vec<Genre>,
pub homepage: Option<String>,
pub in_production: bool,
pub languages: Vec<LanguageCode>,
pub last_air_date: Date,
pub last_episode_to_air: Option<LastEpisode>,
pub name: CompactString,
pub networks: Vec<Network>,
pub number_of_episodes: u32,
pub number_of_seasons: u32,
pub origin_country: Vec<CountryCode>,
pub original_language: LanguageCode,
pub original_name: CompactString,
pub overview: String,
pub popularity: f64,
pub poster_path: Option<CompactString>,
pub production_companies: Vec<ProductionCompany>,
pub seasons: Vec<Season>,
pub status: CompactString,
pub type: CompactString,
pub vote_average: f64,
pub vote_count: u64,
pub videos: Option<Results<Video>>,
pub credits: Option<TVCredits>,
}
Fields§
§id: u32
§backdrop_path: Option<String>
§created_by: Vec<TVCreator>
§episode_run_time: Vec<u16>
§first_air_date: Date
§genres: Vec<Genre>
§homepage: Option<String>
§in_production: bool
§languages: Vec<LanguageCode>
§last_air_date: Date
§last_episode_to_air: Option<LastEpisode>
§name: CompactString
§networks: Vec<Network>
§number_of_episodes: u32
§number_of_seasons: u32
§origin_country: Vec<CountryCode>
§original_language: LanguageCode
§original_name: CompactString
§overview: String
§popularity: f64
§poster_path: Option<CompactString>
§production_companies: Vec<ProductionCompany>
§seasons: Vec<Season>
§status: CompactString
§type: CompactString
§vote_average: f64
§vote_count: u64
§videos: Option<Results<Video>>
§credits: Option<TVCredits>
Trait Implementations§
source§impl<'de> Deserialize<'de> for TV
impl<'de> Deserialize<'de> for TV
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