radarr/models/
movie_runtime_format_type.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
16pub enum MovieRuntimeFormatType {
17 #[serde(rename = "hoursMinutes")]
18 HoursMinutes,
19 #[serde(rename = "minutes")]
20 Minutes,
21
22}
23
24impl std::fmt::Display for MovieRuntimeFormatType {
25 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
26 match self {
27 Self::HoursMinutes => write!(f, "hoursMinutes"),
28 Self::Minutes => write!(f, "minutes"),
29 }
30 }
31}
32
33impl Default for MovieRuntimeFormatType {
34 fn default() -> MovieRuntimeFormatType {
35 Self::HoursMinutes
36 }
37}
38