pub enum EpisodeType {
FULL = 0,
TRAILER = 1,
BONUS = 2,
}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 Default for EpisodeType
impl Default for EpisodeType
Source§impl Enum for EpisodeType
impl Enum for EpisodeType
Source§const VALUES: &'static [EpisodeType]
const VALUES: &'static [EpisodeType]
All enum values for enum type.
Source§impl EnumFull for EpisodeType
impl EnumFull for EpisodeType
Source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
Source§impl Hash for EpisodeType
impl Hash for EpisodeType
Source§impl PartialEq for EpisodeType
impl PartialEq for EpisodeType
impl Copy for EpisodeType
impl Eq 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