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