#[non_exhaustive]#[repr(u32)]pub enum MpegVideoH264VuiSarIdc {
Show 17 variants
Unspecified = 0,
I1x1 = 1,
I12x11 = 2,
I10x11 = 3,
I16x11 = 4,
I40x33 = 5,
I24x11 = 6,
I20x11 = 7,
I32x11 = 8,
I80x33 = 9,
I18x11 = 10,
I15x11 = 11,
I64x33 = 12,
I4x3 = 13,
I3x2 = 14,
I2x1 = 15,
Extended = 16,
}
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.
Unspecified = 0
I1x1 = 1
I12x11 = 2
I10x11 = 3
I16x11 = 4
I40x33 = 5
I24x11 = 6
I20x11 = 7
I32x11 = 8
I80x33 = 9
I18x11 = 10
I15x11 = 11
I64x33 = 12
I4x3 = 13
I3x2 = 14
I2x1 = 15
Extended = 16
Trait Implementations§
Source§impl AsRef<u32> for MpegVideoH264VuiSarIdc
impl AsRef<u32> for MpegVideoH264VuiSarIdc
Source§impl Clone for MpegVideoH264VuiSarIdc
impl Clone for MpegVideoH264VuiSarIdc
Source§fn clone(&self) -> MpegVideoH264VuiSarIdc
fn clone(&self) -> MpegVideoH264VuiSarIdc
Returns a duplicate 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 MpegVideoH264VuiSarIdc
impl Debug for MpegVideoH264VuiSarIdc
Source§impl Deref for MpegVideoH264VuiSarIdc
impl Deref for MpegVideoH264VuiSarIdc
Source§impl Display for MpegVideoH264VuiSarIdc
impl Display for MpegVideoH264VuiSarIdc
Source§impl From<MpegVideoH264VuiSarIdc> for u32
impl From<MpegVideoH264VuiSarIdc> for u32
Source§fn from(data: MpegVideoH264VuiSarIdc) -> Self
fn from(data: MpegVideoH264VuiSarIdc) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MpegVideoH264VuiSarIdc
impl PartialEq for MpegVideoH264VuiSarIdc
Source§impl TryFrom<u32> for MpegVideoH264VuiSarIdc
impl TryFrom<u32> for MpegVideoH264VuiSarIdc
impl Copy for MpegVideoH264VuiSarIdc
impl Eq for MpegVideoH264VuiSarIdc
impl StructuralPartialEq for MpegVideoH264VuiSarIdc
Auto Trait Implementations§
impl Freeze for MpegVideoH264VuiSarIdc
impl RefUnwindSafe for MpegVideoH264VuiSarIdc
impl Send for MpegVideoH264VuiSarIdc
impl Sync for MpegVideoH264VuiSarIdc
impl Unpin for MpegVideoH264VuiSarIdc
impl UnwindSafe for MpegVideoH264VuiSarIdc
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