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