pub struct J2kForwardRctJob<'a> {
pub plane0: &'a mut [f32],
pub plane1: &'a mut [f32],
pub plane2: &'a mut [f32],
}Expand description
Adapter forward RCT job for backend experimentation.
Fields§
§plane0: &'a mut [f32]First component plane, updated in place.
plane1: &'a mut [f32]Second component plane, updated in place.
plane2: &'a mut [f32]Third component plane, updated in place.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !UnwindSafe for J2kForwardRctJob<'a>
impl<'a> Freeze for J2kForwardRctJob<'a>
impl<'a> RefUnwindSafe for J2kForwardRctJob<'a>
impl<'a> Send for J2kForwardRctJob<'a>
impl<'a> Sync for J2kForwardRctJob<'a>
impl<'a> Unpin for J2kForwardRctJob<'a>
impl<'a> UnsafeUnpin for J2kForwardRctJob<'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> 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