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