#[non_exhaustive]#[repr(u32)]pub enum MpegVideoH264Profile {
Show 18 variants
Baseline = 0,
ConstrainedBaseline = 1,
Main = 2,
Extended = 3,
High = 4,
High10 = 5,
High422 = 6,
High444Predictive = 7,
High10Intra = 8,
High422Intra = 9,
High444Intra = 10,
CAVLC444Intra = 11,
ScalableBaseline = 12,
ScalableHigh = 13,
ScalableHighIntra = 14,
StereoHigh = 15,
MultiviewHigh = 16,
ConstrainedHigh = 17,
}
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.
Baseline = 0
ConstrainedBaseline = 1
Main = 2
Extended = 3
High = 4
High10 = 5
High422 = 6
High444Predictive = 7
High10Intra = 8
High422Intra = 9
High444Intra = 10
CAVLC444Intra = 11
ScalableBaseline = 12
ScalableHigh = 13
ScalableHighIntra = 14
StereoHigh = 15
MultiviewHigh = 16
ConstrainedHigh = 17
Trait Implementations§
Source§impl AsRef<u32> for MpegVideoH264Profile
impl AsRef<u32> for MpegVideoH264Profile
Source§impl Clone for MpegVideoH264Profile
impl Clone for MpegVideoH264Profile
Source§fn clone(&self) -> MpegVideoH264Profile
fn clone(&self) -> MpegVideoH264Profile
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 MpegVideoH264Profile
impl Debug for MpegVideoH264Profile
Source§impl Deref for MpegVideoH264Profile
impl Deref for MpegVideoH264Profile
Source§impl Display for MpegVideoH264Profile
impl Display for MpegVideoH264Profile
Source§impl From<MpegVideoH264Profile> for u32
impl From<MpegVideoH264Profile> for u32
Source§fn from(data: MpegVideoH264Profile) -> Self
fn from(data: MpegVideoH264Profile) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MpegVideoH264Profile
impl PartialEq for MpegVideoH264Profile
Source§impl TryFrom<u32> for MpegVideoH264Profile
impl TryFrom<u32> for MpegVideoH264Profile
impl Copy for MpegVideoH264Profile
impl Eq for MpegVideoH264Profile
impl StructuralPartialEq for MpegVideoH264Profile
Auto Trait Implementations§
impl Freeze for MpegVideoH264Profile
impl RefUnwindSafe for MpegVideoH264Profile
impl Send for MpegVideoH264Profile
impl Sync for MpegVideoH264Profile
impl Unpin for MpegVideoH264Profile
impl UnwindSafe for MpegVideoH264Profile
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