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