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