#[repr(u8)]pub enum Genre {
Show 29 variants
Action = 0,
Adult = 1,
Adventure = 2,
Animation = 3,
Biography = 4,
Comedy = 5,
Crime = 6,
Documentary = 7,
Drama = 8,
Experimental = 9,
Family = 10,
Fantasy = 11,
FilmNoir = 12,
GameShow = 13,
History = 14,
Horror = 15,
Music = 16,
Musical = 17,
Mystery = 18,
News = 19,
RealityTv = 20,
Romance = 21,
SciFi = 22,
Short = 23,
Sport = 24,
TalkShow = 25,
Thriller = 26,
War = 27,
Western = 28,
}Expand description
Identifies the genre of a Title. Often, a title will have multiple.
Variants§
Action = 0
Adult = 1
Adventure = 2
Animation = 3
Biography = 4
Comedy = 5
Crime = 6
Documentary = 7
Drama = 8
Experimental = 9
Family = 10
Fantasy = 11
FilmNoir = 12
GameShow = 13
History = 14
Horror = 15
Music = 16
Musical = 17
Mystery = 18
News = 19
RealityTv = 20
Romance = 21
SciFi = 22
Short = 23
Sport = 24
TalkShow = 25
Thriller = 26
War = 27
Western = 28
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Genre
impl<'de> Deserialize<'de> for Genre
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
impl Copy for Genre
impl Eq for Genre
impl StructuralPartialEq for Genre
Auto Trait Implementations§
impl Freeze for Genre
impl RefUnwindSafe for Genre
impl Send for Genre
impl Sync for Genre
impl Unpin for Genre
impl UnwindSafe for Genre
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more