pub struct OpsinInverseMatrix {
pub inv_mat: [[f32; 3]; 3],
pub opsin_bias: [f32; 3],
pub quant_bias: [f32; 3],
pub quant_bias_numerator: f32,
/* private fields */
}
Expand description
Opsin inverse metadata.
Fields§
§inv_mat: [[f32; 3]; 3]
§opsin_bias: [f32; 3]
§quant_bias: [f32; 3]
§quant_bias_numerator: f32
Trait Implementations§
Source§impl<Ctx: Copy> Bundle<Ctx> for OpsinInverseMatrix
impl<Ctx: Copy> Bundle<Ctx> for OpsinInverseMatrix
Source§impl<Ctx: Copy> BundleDefault<Ctx> for OpsinInverseMatrix
impl<Ctx: Copy> BundleDefault<Ctx> for OpsinInverseMatrix
Source§fn default_with_context(_ctx: Ctx) -> Selfwhere
Self: Sized,
fn default_with_context(_ctx: Ctx) -> Selfwhere
Self: Sized,
Creates a default value with the given context.
Auto Trait Implementations§
impl Freeze for OpsinInverseMatrix
impl RefUnwindSafe for OpsinInverseMatrix
impl Send for OpsinInverseMatrix
impl Sync for OpsinInverseMatrix
impl Unpin for OpsinInverseMatrix
impl UnwindSafe for OpsinInverseMatrix
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