pub struct J2kDirectIdwtStep {
pub output_band_id: J2kDirectBandId,
pub rect: J2kRect,
pub transform: J2kWaveletTransform,
pub ll_band_id: J2kDirectBandId,
pub ll: J2kRect,
pub hl_band_id: J2kDirectBandId,
pub hl: J2kRect,
pub lh_band_id: J2kDirectBandId,
pub lh: J2kRect,
pub hh_band_id: J2kDirectBandId,
pub hh: J2kRect,
}Expand description
One inverse-transform step in a direct-device plan.
Fields§
§output_band_id: J2kDirectBandIdOutput coefficient-band identifier.
rect: J2kRectOutput rectangle.
transform: J2kWaveletTransformTransform to apply.
ll_band_id: J2kDirectBandIdLL input-band identifier.
ll: J2kRectLL input rectangle.
hl_band_id: J2kDirectBandIdHL input-band identifier.
hl: J2kRectHL input rectangle.
lh_band_id: J2kDirectBandIdLH input-band identifier.
lh: J2kRectLH input rectangle.
hh_band_id: J2kDirectBandIdHH input-band identifier.
hh: J2kRectHH input rectangle.
Trait Implementations§
Source§impl Clone for J2kDirectIdwtStep
impl Clone for J2kDirectIdwtStep
Source§fn clone(&self) -> J2kDirectIdwtStep
fn clone(&self) -> J2kDirectIdwtStep
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 J2kDirectIdwtStep
Auto Trait Implementations§
impl Freeze for J2kDirectIdwtStep
impl RefUnwindSafe for J2kDirectIdwtStep
impl Send for J2kDirectIdwtStep
impl Sync for J2kDirectIdwtStep
impl Unpin for J2kDirectIdwtStep
impl UnsafeUnpin for J2kDirectIdwtStep
impl UnwindSafe for J2kDirectIdwtStep
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