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