pub struct JQUANT_TBL {
pub quantval: [u16; 64],
/* private fields */
}Fields§
§quantval: [u16; 64]This array gives the coefficient quantizers in natural array order (not the zigzag order in which they are stored in a JPEG DQT marker). CAUTION: IJG versions prior to v6a kept this array in zigzag order.
Trait Implementations§
Source§impl Default for JQUANT_TBL
impl Default for JQUANT_TBL
Source§fn default() -> JQUANT_TBL
fn default() -> JQUANT_TBL
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for JQUANT_TBL
impl RefUnwindSafe for JQUANT_TBL
impl Send for JQUANT_TBL
impl Sync for JQUANT_TBL
impl Unpin for JQUANT_TBL
impl UnsafeUnpin for JQUANT_TBL
impl UnwindSafe for JQUANT_TBL
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