pub struct ScalingListData {
pub scaling_list: [[[i64; 64]; 6]; 4],
}
Expand description
Scaling list data.
scaling_list_data()
- ISO/IEC 23008-2 - 7.3.4
- ISO/IEC 23008-2 - 7.4.5
Fields§
§scaling_list: [[[i64; 64]; 6]; 4]
The resulting scaling list.
ScalingList[0..3][0..5][0..63]
Trait Implementations§
Source§impl Clone for ScalingListData
impl Clone for ScalingListData
Source§fn clone(&self) -> ScalingListData
fn clone(&self) -> ScalingListData
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 ScalingListData
impl Debug for ScalingListData
Source§impl PartialEq for ScalingListData
impl PartialEq for ScalingListData
impl StructuralPartialEq for ScalingListData
Auto Trait Implementations§
impl Freeze for ScalingListData
impl RefUnwindSafe for ScalingListData
impl Send for ScalingListData
impl Sync for ScalingListData
impl Unpin for ScalingListData
impl UnwindSafe for ScalingListData
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