pub struct PredWeightTable {
pub luma_log2_weight_denom: u32,
pub chroma_log2_weight_denom: Option<u32>,
pub luma_weights: Vec<Option<PredWeight>>,
pub chroma_weights: Vec<Vec<PredWeight>>,
}Fields§
§luma_log2_weight_denom: u32§chroma_log2_weight_denom: Option<u32>§luma_weights: Vec<Option<PredWeight>>§chroma_weights: Vec<Vec<PredWeight>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PredWeightTable
impl RefUnwindSafe for PredWeightTable
impl Send for PredWeightTable
impl Sync for PredWeightTable
impl Unpin for PredWeightTable
impl UnwindSafe for PredWeightTable
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