pub enum EpisodeType {
Episode = 1,
Credits = 2,
Special = 3,
Trailer = 4,
Parody = 5,
Other = 6,
}Variants§
Trait Implementations§
Source§impl Clone for EpisodeType
impl Clone for EpisodeType
Source§fn clone(&self) -> EpisodeType
fn clone(&self) -> EpisodeType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EpisodeType
impl Debug for EpisodeType
Source§impl<'de> Deserialize<'de> for EpisodeType
impl<'de> Deserialize<'de> for EpisodeType
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 Display for EpisodeType
impl Display for EpisodeType
Source§impl FromStr for EpisodeType
impl FromStr for EpisodeType
Source§impl PartialEq for EpisodeType
impl PartialEq for EpisodeType
Source§impl Serialize for EpisodeType
impl Serialize for EpisodeType
impl StructuralPartialEq for EpisodeType
Auto Trait Implementations§
impl Freeze for EpisodeType
impl RefUnwindSafe for EpisodeType
impl Send for EpisodeType
impl Sync for EpisodeType
impl Unpin for EpisodeType
impl UnwindSafe for EpisodeType
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