#[non_exhaustive]#[repr(u32)]pub enum MpegVideoHevcTier {
Main = 0,
High = 1,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl AsRef<u32> for MpegVideoHevcTier
impl AsRef<u32> for MpegVideoHevcTier
Source§impl Clone for MpegVideoHevcTier
impl Clone for MpegVideoHevcTier
Source§fn clone(&self) -> MpegVideoHevcTier
fn clone(&self) -> MpegVideoHevcTier
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 MpegVideoHevcTier
impl Debug for MpegVideoHevcTier
Source§impl Deref for MpegVideoHevcTier
impl Deref for MpegVideoHevcTier
Source§impl Display for MpegVideoHevcTier
impl Display for MpegVideoHevcTier
Source§impl From<MpegVideoHevcTier> for u32
impl From<MpegVideoHevcTier> for u32
Source§fn from(data: MpegVideoHevcTier) -> Self
fn from(data: MpegVideoHevcTier) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MpegVideoHevcTier
impl PartialEq for MpegVideoHevcTier
Source§impl TryFrom<u32> for MpegVideoHevcTier
impl TryFrom<u32> for MpegVideoHevcTier
impl Copy for MpegVideoHevcTier
impl Eq for MpegVideoHevcTier
impl StructuralPartialEq for MpegVideoHevcTier
Auto Trait Implementations§
impl Freeze for MpegVideoHevcTier
impl RefUnwindSafe for MpegVideoHevcTier
impl Send for MpegVideoHevcTier
impl Sync for MpegVideoHevcTier
impl Unpin for MpegVideoHevcTier
impl UnwindSafe for MpegVideoHevcTier
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