tmdb_api/common/
status.rs

1#[derive(Clone, Copy, Debug, Eq, PartialEq, Deserialize, Serialize)]
2pub enum Status {
3    Rumored,
4    Planned,
5    #[serde(rename = "In Production")]
6    InProduction,
7    #[serde(rename = "Post Production")]
8    PostProduction,
9    Released,
10    Canceled,
11}