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