pub struct IrreversibleQuantizationStep {
pub exponent: u8,
pub mantissa: u16,
}Expand description
Public JPEG 2000 irreversible quantization step-size tuple.
Fields§
§exponent: u8Quantization step-size exponent.
mantissa: u16Quantization step-size mantissa.
Trait Implementations§
Source§impl Clone for IrreversibleQuantizationStep
impl Clone for IrreversibleQuantizationStep
Source§fn clone(&self) -> IrreversibleQuantizationStep
fn clone(&self) -> IrreversibleQuantizationStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IrreversibleQuantizationStep
Source§impl Debug for IrreversibleQuantizationStep
impl Debug for IrreversibleQuantizationStep
impl Eq for IrreversibleQuantizationStep
Source§impl PartialEq for IrreversibleQuantizationStep
impl PartialEq for IrreversibleQuantizationStep
Source§fn eq(&self, other: &IrreversibleQuantizationStep) -> bool
fn eq(&self, other: &IrreversibleQuantizationStep) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IrreversibleQuantizationStep
Auto Trait Implementations§
impl Freeze for IrreversibleQuantizationStep
impl RefUnwindSafe for IrreversibleQuantizationStep
impl Send for IrreversibleQuantizationStep
impl Sync for IrreversibleQuantizationStep
impl Unpin for IrreversibleQuantizationStep
impl UnsafeUnpin for IrreversibleQuantizationStep
impl UnwindSafe for IrreversibleQuantizationStep
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