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