#[non_exhaustive]#[repr(u32)]pub enum MpegVideoHevcTier {
Main,
High,
}
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.
Methods from Deref<Target = u32>§
pub const MIN: u32 = 0u32
pub const MAX: u32 = 4_294_967_295u32
pub const BITS: u32 = 32u32
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<MpegVideoHevcTier> for MpegVideoHevcTier
impl PartialEq<MpegVideoHevcTier> for MpegVideoHevcTier
source§fn eq(&self, other: &MpegVideoHevcTier) -> bool
fn eq(&self, other: &MpegVideoHevcTier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<u32> for MpegVideoHevcTier
impl TryFrom<u32> for MpegVideoHevcTier
impl Copy for MpegVideoHevcTier
impl Eq for MpegVideoHevcTier
impl StructuralEq for MpegVideoHevcTier
impl StructuralPartialEq for MpegVideoHevcTier
Auto Trait Implementations§
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