#[non_exhaustive]#[repr(u32)]pub enum MpegVideoHevcProfile {
Main,
MainStillPicture,
Main10,
}
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 MpegVideoHevcProfile
impl AsRef<u32> for MpegVideoHevcProfile
source§impl Clone for MpegVideoHevcProfile
impl Clone for MpegVideoHevcProfile
source§fn clone(&self) -> MpegVideoHevcProfile
fn clone(&self) -> MpegVideoHevcProfile
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 MpegVideoHevcProfile
impl Debug for MpegVideoHevcProfile
source§impl Deref for MpegVideoHevcProfile
impl Deref for MpegVideoHevcProfile
source§impl Display for MpegVideoHevcProfile
impl Display for MpegVideoHevcProfile
source§impl From<MpegVideoHevcProfile> for u32
impl From<MpegVideoHevcProfile> for u32
source§fn from(data: MpegVideoHevcProfile) -> Self
fn from(data: MpegVideoHevcProfile) -> Self
Converts to this type from the input type.
source§impl PartialEq<MpegVideoHevcProfile> for MpegVideoHevcProfile
impl PartialEq<MpegVideoHevcProfile> for MpegVideoHevcProfile
source§fn eq(&self, other: &MpegVideoHevcProfile) -> bool
fn eq(&self, other: &MpegVideoHevcProfile) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<u32> for MpegVideoHevcProfile
impl TryFrom<u32> for MpegVideoHevcProfile
impl Copy for MpegVideoHevcProfile
impl Eq for MpegVideoHevcProfile
impl StructuralEq for MpegVideoHevcProfile
impl StructuralPartialEq for MpegVideoHevcProfile
Auto Trait Implementations§
impl RefUnwindSafe for MpegVideoHevcProfile
impl Send for MpegVideoHevcProfile
impl Sync for MpegVideoHevcProfile
impl Unpin for MpegVideoHevcProfile
impl UnwindSafe for MpegVideoHevcProfile
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