#[non_exhaustive]#[repr(u32)]pub enum MpegVideoMpeg4Profile {
Simple = 0,
AdvancedSimple = 1,
Core = 2,
SimpleScalable = 3,
AdvancedCodingEfficiency = 4,
}
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 MpegVideoMpeg4Profile
impl AsRef<u32> for MpegVideoMpeg4Profile
Source§impl Clone for MpegVideoMpeg4Profile
impl Clone for MpegVideoMpeg4Profile
Source§fn clone(&self) -> MpegVideoMpeg4Profile
fn clone(&self) -> MpegVideoMpeg4Profile
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 MpegVideoMpeg4Profile
impl Debug for MpegVideoMpeg4Profile
Source§impl Deref for MpegVideoMpeg4Profile
impl Deref for MpegVideoMpeg4Profile
Source§impl Display for MpegVideoMpeg4Profile
impl Display for MpegVideoMpeg4Profile
Source§impl From<MpegVideoMpeg4Profile> for u32
impl From<MpegVideoMpeg4Profile> for u32
Source§fn from(data: MpegVideoMpeg4Profile) -> Self
fn from(data: MpegVideoMpeg4Profile) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MpegVideoMpeg4Profile
impl PartialEq for MpegVideoMpeg4Profile
Source§impl TryFrom<u32> for MpegVideoMpeg4Profile
impl TryFrom<u32> for MpegVideoMpeg4Profile
impl Copy for MpegVideoMpeg4Profile
impl Eq for MpegVideoMpeg4Profile
impl StructuralPartialEq for MpegVideoMpeg4Profile
Auto Trait Implementations§
impl Freeze for MpegVideoMpeg4Profile
impl RefUnwindSafe for MpegVideoMpeg4Profile
impl Send for MpegVideoMpeg4Profile
impl Sync for MpegVideoMpeg4Profile
impl Unpin for MpegVideoMpeg4Profile
impl UnwindSafe for MpegVideoMpeg4Profile
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