pub struct J2kDeinterleaveToF32Job<'a> {
pub pixels: &'a [u8],
pub num_pixels: usize,
pub num_components: u8,
pub bit_depth: u8,
pub signed: bool,
}Expand description
Adapter pixel deinterleave/level-shift job for backend experimentation.
Fields§
§pixels: &'a [u8]Interleaved source pixel bytes.
num_pixels: usizeNumber of pixels to convert.
num_components: u8Number of interleaved components per pixel.
bit_depth: u8Source sample bit depth.
signed: boolWhether source samples are signed.
Trait Implementations§
Source§impl<'a> Clone for J2kDeinterleaveToF32Job<'a>
impl<'a> Clone for J2kDeinterleaveToF32Job<'a>
Source§fn clone(&self) -> J2kDeinterleaveToF32Job<'a>
fn clone(&self) -> J2kDeinterleaveToF32Job<'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 J2kDeinterleaveToF32Job<'a>
Auto Trait Implementations§
impl<'a> Freeze for J2kDeinterleaveToF32Job<'a>
impl<'a> RefUnwindSafe for J2kDeinterleaveToF32Job<'a>
impl<'a> Send for J2kDeinterleaveToF32Job<'a>
impl<'a> Sync for J2kDeinterleaveToF32Job<'a>
impl<'a> Unpin for J2kDeinterleaveToF32Job<'a>
impl<'a> UnsafeUnpin for J2kDeinterleaveToF32Job<'a>
impl<'a> UnwindSafe for J2kDeinterleaveToF32Job<'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