pub struct SpsNALUnit {
pub nal_unit_header: NALUnitHeader,
pub rbsp: SpsRbsp,
}
Expand description
Sequence parameter set contained in a NAL unit.
This only represents sequence parameter sets that are part of NAL units.
Therefore the NAL unit header is included in this struct as SpsNALUnit::nal_unit_header
.
Fields§
§nal_unit_header: NALUnitHeader
The NAL unit header.
rbsp: SpsRbsp
The SPS RBSP.
Implementations§
Trait Implementations§
Source§impl Clone for SpsNALUnit
impl Clone for SpsNALUnit
Source§fn clone(&self) -> SpsNALUnit
fn clone(&self) -> SpsNALUnit
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 SpsNALUnit
impl Debug for SpsNALUnit
Source§impl PartialEq for SpsNALUnit
impl PartialEq for SpsNALUnit
impl StructuralPartialEq for SpsNALUnit
Auto Trait Implementations§
impl Freeze for SpsNALUnit
impl RefUnwindSafe for SpsNALUnit
impl Send for SpsNALUnit
impl Sync for SpsNALUnit
impl Unpin for SpsNALUnit
impl UnwindSafe for SpsNALUnit
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