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 copy 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§fn default() -> EpisodeType
fn default() -> EpisodeType
Returns the “default value” for a type. Read more
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.