#[non_exhaustive]#[repr(u32)]pub enum MpegVideoVp9Profile {
P0,
P1,
P2,
P3,
}
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.
Methods from Deref<Target = u32>§
pub const MIN: u32 = 0u32
pub const MAX: u32 = 4_294_967_295u32
pub const BITS: u32 = 32u32
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 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 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<MpegVideoVp9Profile> for MpegVideoVp9Profile
impl PartialEq<MpegVideoVp9Profile> for MpegVideoVp9Profile
source§fn eq(&self, other: &MpegVideoVp9Profile) -> bool
fn eq(&self, other: &MpegVideoVp9Profile) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<u32> for MpegVideoVp9Profile
impl TryFrom<u32> for MpegVideoVp9Profile
impl Copy for MpegVideoVp9Profile
impl Eq for MpegVideoVp9Profile
impl StructuralEq for MpegVideoVp9Profile
impl StructuralPartialEq for MpegVideoVp9Profile
Auto Trait Implementations§
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