pub enum ExtraType {
Unknown,
Clip,
Trailer,
BehindTheScenes,
DeletedScene,
Interview,
Scene,
Sample,
ThemeSong,
ThemeVideo,
Featurette,
Short,
}
Expand description
ExtraType
JSON schema
{
"type": "string",
"enum": [
"Unknown",
"Clip",
"Trailer",
"BehindTheScenes",
"DeletedScene",
"Interview",
"Scene",
"Sample",
"ThemeSong",
"ThemeVideo",
"Featurette",
"Short"
]
}
Variants§
Unknown
Clip
Trailer
BehindTheScenes
DeletedScene
Interview
Scene
Sample
ThemeSong
ThemeVideo
Featurette
Short
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ExtraType
impl<'de> Deserialize<'de> for ExtraType
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
Source§impl Ord for ExtraType
impl Ord for ExtraType
Source§impl PartialOrd for ExtraType
impl PartialOrd for ExtraType
Source§impl TryFrom<&String> for ExtraType
impl TryFrom<&String> for ExtraType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ExtraType
impl TryFrom<&str> for ExtraType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ExtraType
impl TryFrom<String> for ExtraType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for ExtraType
impl Eq for ExtraType
impl StructuralPartialEq for ExtraType
Auto Trait Implementations§
impl Freeze for ExtraType
impl RefUnwindSafe for ExtraType
impl Send for ExtraType
impl Sync for ExtraType
impl Unpin for ExtraType
impl UnwindSafe for ExtraType
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