pub struct ColorConfig {
pub full_range: bool,
pub color_primaries: u8,
pub transfer_characteristics: u8,
pub matrix_coefficients: u8,
}Expand description
The color config for SPS.
Fields§
§full_range: boolThe video_full_range_flag as a bool.
color_primaries: u8The colour_primaries bits as a u8.
transfer_characteristics: u8The transfer_characteristics bits as a u8.
matrix_coefficients: u8The matrix_coefficients bits as a u8.
Trait Implementations§
Source§impl Clone for ColorConfig
impl Clone for ColorConfig
Source§fn clone(&self) -> ColorConfig
fn clone(&self) -> ColorConfig
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 ColorConfig
impl Debug for ColorConfig
Source§impl PartialEq for ColorConfig
impl PartialEq for ColorConfig
impl StructuralPartialEq for ColorConfig
Auto Trait Implementations§
impl Freeze for ColorConfig
impl RefUnwindSafe for ColorConfig
impl Send for ColorConfig
impl Sync for ColorConfig
impl Unpin for ColorConfig
impl UnwindSafe for ColorConfig
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