pub struct H26xInvariant {
pub profile_idc: u8,
pub level_idc: u8,
pub chroma_format_idc: u8,
pub bit_depth_luma: u8,
pub bit_depth_chroma: u8,
pub width: u32,
pub height: u32,
}Expand description
H.264 / H.265 decode-init invariant, derived from the SPS.
Fields§
§profile_idc: u8§level_idc: u8§chroma_format_idc: u8§bit_depth_luma: u8§bit_depth_chroma: u8§width: u32§height: u32Trait Implementations§
Source§impl Clone for H26xInvariant
impl Clone for H26xInvariant
Source§fn clone(&self) -> H26xInvariant
fn clone(&self) -> H26xInvariant
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 H26xInvariant
impl Debug for H26xInvariant
impl Eq for H26xInvariant
Source§impl PartialEq for H26xInvariant
impl PartialEq for H26xInvariant
Source§fn eq(&self, other: &H26xInvariant) -> bool
fn eq(&self, other: &H26xInvariant) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for H26xInvariant
Auto Trait Implementations§
impl Freeze for H26xInvariant
impl RefUnwindSafe for H26xInvariant
impl Send for H26xInvariant
impl Sync for H26xInvariant
impl Unpin for H26xInvariant
impl UnsafeUnpin for H26xInvariant
impl UnwindSafe for H26xInvariant
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