#[non_exhaustive]#[repr(u32)]pub enum MpegVideoH264SeiFpArrangementType {
CheckerBoard = 0,
Column = 1,
Row = 2,
SideBySide = 3,
TopBottom = 4,
Temporal = 5,
}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 MpegVideoH264SeiFpArrangementType
impl AsRef<u32> for MpegVideoH264SeiFpArrangementType
Source§impl Clone for MpegVideoH264SeiFpArrangementType
impl Clone for MpegVideoH264SeiFpArrangementType
Source§fn clone(&self) -> MpegVideoH264SeiFpArrangementType
fn clone(&self) -> MpegVideoH264SeiFpArrangementType
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 From<MpegVideoH264SeiFpArrangementType> for u32
impl From<MpegVideoH264SeiFpArrangementType> for u32
Source§fn from(data: MpegVideoH264SeiFpArrangementType) -> Self
fn from(data: MpegVideoH264SeiFpArrangementType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MpegVideoH264SeiFpArrangementType
impl PartialEq for MpegVideoH264SeiFpArrangementType
Source§fn eq(&self, other: &MpegVideoH264SeiFpArrangementType) -> bool
fn eq(&self, other: &MpegVideoH264SeiFpArrangementType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MpegVideoH264SeiFpArrangementType
impl Eq for MpegVideoH264SeiFpArrangementType
impl StructuralPartialEq for MpegVideoH264SeiFpArrangementType
Auto Trait Implementations§
impl Freeze for MpegVideoH264SeiFpArrangementType
impl RefUnwindSafe for MpegVideoH264SeiFpArrangementType
impl Send for MpegVideoH264SeiFpArrangementType
impl Sync for MpegVideoH264SeiFpArrangementType
impl Unpin for MpegVideoH264SeiFpArrangementType
impl UnwindSafe for MpegVideoH264SeiFpArrangementType
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