pub struct J2kSingleDecompositionIdwtJob<'a> {
pub rect: J2kRect,
pub transform: J2kWaveletTransform,
pub ll: J2kIdwtBand<'a>,
pub hl: J2kIdwtBand<'a>,
pub lh: J2kIdwtBand<'a>,
pub hh: J2kIdwtBand<'a>,
}Expand description
Adapter single-decomposition IDWT job for backend experimentation.
Fields§
§rect: J2kRectOutput rect of the decomposition level.
transform: J2kWaveletTransformTransform to apply.
ll: J2kIdwtBand<'a>LL band input.
hl: J2kIdwtBand<'a>HL band input.
lh: J2kIdwtBand<'a>LH band input.
hh: J2kIdwtBand<'a>HH band input.
Trait Implementations§
Source§impl<'a> Clone for J2kSingleDecompositionIdwtJob<'a>
impl<'a> Clone for J2kSingleDecompositionIdwtJob<'a>
Source§fn clone(&self) -> J2kSingleDecompositionIdwtJob<'a>
fn clone(&self) -> J2kSingleDecompositionIdwtJob<'a>
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<'a> Copy for J2kSingleDecompositionIdwtJob<'a>
Auto Trait Implementations§
impl<'a> Freeze for J2kSingleDecompositionIdwtJob<'a>
impl<'a> RefUnwindSafe for J2kSingleDecompositionIdwtJob<'a>
impl<'a> Send for J2kSingleDecompositionIdwtJob<'a>
impl<'a> Sync for J2kSingleDecompositionIdwtJob<'a>
impl<'a> Unpin for J2kSingleDecompositionIdwtJob<'a>
impl<'a> UnsafeUnpin for J2kSingleDecompositionIdwtJob<'a>
impl<'a> UnwindSafe for J2kSingleDecompositionIdwtJob<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more