#[non_exhaustive]#[repr(u32)]pub enum MpegVideoHevcProfile {
Main = 0,
MainStillPicture = 1,
Main10 = 2,
}
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 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 for MpegVideoHevcProfile
impl PartialEq for MpegVideoHevcProfile
Source§impl TryFrom<u32> for MpegVideoHevcProfile
impl TryFrom<u32> for MpegVideoHevcProfile
impl Copy for MpegVideoHevcProfile
impl Eq for MpegVideoHevcProfile
impl StructuralPartialEq for MpegVideoHevcProfile
Auto Trait Implementations§
impl Freeze for MpegVideoHevcProfile
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