pub struct QuantTable {
pub values: [u16; 64],
}Expand description
Quantization table: 64 values in natural (row-major) order.
Fields§
§values: [u16; 64]Quantization values, indexed by row * 8 + col.
Implementations§
Trait Implementations§
Source§impl Clone for QuantTable
impl Clone for QuantTable
Source§fn clone(&self) -> QuantTable
fn clone(&self) -> QuantTable
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for QuantTable
impl RefUnwindSafe for QuantTable
impl Send for QuantTable
impl Sync for QuantTable
impl Unpin for QuantTable
impl UnsafeUnpin for QuantTable
impl UnwindSafe for QuantTable
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