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