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