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