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