flix-tmdb 0.0.1

Clients and models for fetching data from TMDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use chrono::NaiveDate;

/// A deserialized Episode from the TMDB API
#[derive(Debug, serde::Deserialize)]
pub struct Episode {
	/// The episode's number
	pub episode_number: i32,
	/// The episode's name
	pub name: String,
	/// The episode's overview
	pub overview: String,
	/// The episode's air date
	pub air_date: NaiveDate,
}