pub struct NaluHeader {
pub type_: NaluType,
pub nuh_layer_id: u8,
pub nuh_temporal_id_plus1: u8,
}
Fields§
§type_: NaluType
The NALU type.
nuh_layer_id: u8
Specifies the identifier of the layer to which a VCL NAL unit belongs or the identifier of a layer to which a non-VCL NAL unit applies.
nuh_temporal_id_plus1: u8
Minus 1 specifies a temporal identifier for the NAL unit. The value of nuh_temporal_id_plus1 shall not be equal to 0.
Trait Implementations§
Source§impl Clone for NaluHeader
impl Clone for NaluHeader
Source§fn clone(&self) -> NaluHeader
fn clone(&self) -> NaluHeader
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 NaluHeader
impl Debug for NaluHeader
Source§impl Default for NaluHeader
impl Default for NaluHeader
Source§fn default() -> NaluHeader
fn default() -> NaluHeader
Returns the “default value” for a type. Read more
Source§impl Header for NaluHeader
impl Header for NaluHeader
Source§impl PartialEq for NaluHeader
impl PartialEq for NaluHeader
impl Eq for NaluHeader
impl StructuralPartialEq for NaluHeader
Auto Trait Implementations§
impl Freeze for NaluHeader
impl RefUnwindSafe for NaluHeader
impl Send for NaluHeader
impl Sync for NaluHeader
impl Unpin for NaluHeader
impl UnwindSafe for NaluHeader
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