#[non_exhaustive]#[repr(u32)]pub enum MpegVideoH264Level {
Show 20 variants
    L10 = 0,
    L1B = 1,
    L11 = 2,
    L12 = 3,
    L13 = 4,
    L20 = 5,
    L21 = 6,
    L22 = 7,
    L30 = 8,
    L31 = 9,
    L32 = 10,
    L40 = 11,
    L41 = 12,
    L42 = 13,
    L50 = 14,
    L51 = 15,
    L52 = 16,
    L60 = 17,
    L61 = 18,
    L62 = 19,
}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.
L10 = 0
L1B = 1
L11 = 2
L12 = 3
L13 = 4
L20 = 5
L21 = 6
L22 = 7
L30 = 8
L31 = 9
L32 = 10
L40 = 11
L41 = 12
L42 = 13
L50 = 14
L51 = 15
L52 = 16
L60 = 17
L61 = 18
L62 = 19
Trait Implementations§
Source§impl AsRef<u32> for MpegVideoH264Level
 
impl AsRef<u32> for MpegVideoH264Level
Source§impl Clone for MpegVideoH264Level
 
impl Clone for MpegVideoH264Level
Source§fn clone(&self) -> MpegVideoH264Level
 
fn clone(&self) -> MpegVideoH264Level
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 MpegVideoH264Level
 
impl Debug for MpegVideoH264Level
Source§impl Deref for MpegVideoH264Level
 
impl Deref for MpegVideoH264Level
Source§impl Display for MpegVideoH264Level
 
impl Display for MpegVideoH264Level
Source§impl From<MpegVideoH264Level> for u32
 
impl From<MpegVideoH264Level> for u32
Source§fn from(data: MpegVideoH264Level) -> Self
 
fn from(data: MpegVideoH264Level) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MpegVideoH264Level
 
impl PartialEq for MpegVideoH264Level
Source§impl TryFrom<u32> for MpegVideoH264Level
 
impl TryFrom<u32> for MpegVideoH264Level
impl Copy for MpegVideoH264Level
impl Eq for MpegVideoH264Level
impl StructuralPartialEq for MpegVideoH264Level
Auto Trait Implementations§
impl Freeze for MpegVideoH264Level
impl RefUnwindSafe for MpegVideoH264Level
impl Send for MpegVideoH264Level
impl Sync for MpegVideoH264Level
impl Unpin for MpegVideoH264Level
impl UnwindSafe for MpegVideoH264Level
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