pub enum J2kDirectGrayscaleStep {
ClassicSubBand(J2kOwnedSubBandPlan),
HtSubBand(HtOwnedSubBandPlan),
Idwt(J2kDirectIdwtStep),
Store(J2kDirectStoreStep),
}Expand description
Ordered direct-device decode step for one component.
Variants§
ClassicSubBand(J2kOwnedSubBandPlan)
Decode one classic JPEG 2000 subband.
HtSubBand(HtOwnedSubBandPlan)
Decode one HTJ2K subband.
Idwt(J2kDirectIdwtStep)
Apply one single-decomposition inverse transform.
Store(J2kDirectStoreStep)
Store the final component plane.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for J2kDirectGrayscaleStep
impl RefUnwindSafe for J2kDirectGrayscaleStep
impl Send for J2kDirectGrayscaleStep
impl Sync for J2kDirectGrayscaleStep
impl Unpin for J2kDirectGrayscaleStep
impl UnsafeUnpin for J2kDirectGrayscaleStep
impl UnwindSafe for J2kDirectGrayscaleStep
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