pub struct PrecomputedHtj2k53Image {
pub width: u32,
pub height: u32,
pub bit_depth: u8,
pub signed: bool,
pub components: Vec<PrecomputedHtj2k53Component>,
}Expand description
Precomputed reversible 5/3 wavelet image.
Fields§
§width: u32Reference-grid image width.
height: u32Reference-grid image height.
bit_depth: u8Component precision in bits.
signed: boolWhether component samples are signed.
components: Vec<PrecomputedHtj2k53Component>Components at their native resolution.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PrecomputedHtj2k53Image
impl RefUnwindSafe for PrecomputedHtj2k53Image
impl Send for PrecomputedHtj2k53Image
impl Sync for PrecomputedHtj2k53Image
impl Unpin for PrecomputedHtj2k53Image
impl UnsafeUnpin for PrecomputedHtj2k53Image
impl UnwindSafe for PrecomputedHtj2k53Image
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