pub struct HtOwnedSubBandPlan {
pub band_id: u32,
pub rect: J2kRect,
pub width: u32,
pub height: u32,
pub jobs: Vec<HtOwnedCodeBlockBatchJob>,
}Expand description
Adapter owned HTJ2K sub-band decode job.
Fields§
§band_id: u32Stable identifier for the decoded coefficient band produced by this step.
rect: J2kRectAbsolute sub-band rect in component coordinates.
width: u32Sub-band width in samples.
height: u32Sub-band height in samples.
jobs: Vec<HtOwnedCodeBlockBatchJob>Owned code-block jobs for this sub-band.
Trait Implementations§
Source§impl Clone for HtOwnedSubBandPlan
impl Clone for HtOwnedSubBandPlan
Source§fn clone(&self) -> HtOwnedSubBandPlan
fn clone(&self) -> HtOwnedSubBandPlan
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 moreAuto Trait Implementations§
impl Freeze for HtOwnedSubBandPlan
impl RefUnwindSafe for HtOwnedSubBandPlan
impl Send for HtOwnedSubBandPlan
impl Sync for HtOwnedSubBandPlan
impl Unpin for HtOwnedSubBandPlan
impl UnsafeUnpin for HtOwnedSubBandPlan
impl UnwindSafe for HtOwnedSubBandPlan
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