pub enum NaluType {
Vps,
Pps,
Sps,
Unknown(u8),
}Expand description
The Nalu Type. ISO/IEC 23008-2:2020(E) - 7.4.2.2 (Table 7-1)
Variants§
Vps
The Video Parameter Set.
Pps
The Picture Parameter Set.
Sps
The Sequence Parameter Set.
Unknown(u8)
An unknown u8. This is the default value if the NaluType is set to something other than VPS, PPS, or SPS.
Trait Implementations§
impl Copy for NaluType
impl StructuralPartialEq for NaluType
Auto Trait Implementations§
impl Freeze for NaluType
impl RefUnwindSafe for NaluType
impl Send for NaluType
impl Sync for NaluType
impl Unpin for NaluType
impl UnwindSafe for NaluType
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