pub struct ColourTransformFns {
pub rev_convert: RevConvertFn,
pub rev_convert_nlt_type3: RevConvertFn,
pub irv_convert_to_integer: IrvConvertToIntegerFn,
pub irv_convert_to_float: IrvConvertToFloatFn,
pub irv_convert_to_integer_nlt_type3: IrvConvertToIntegerFn,
pub irv_convert_to_float_nlt_type3: IrvConvertToFloatFn,
pub rct_forward: RctFn,
pub rct_backward: RctFn,
pub ict_forward: IctFn,
pub ict_backward: IctFn,
}Expand description
Runtime-dispatched colour transform function table.
Fields§
§rev_convert: RevConvertFn§rev_convert_nlt_type3: RevConvertFn§irv_convert_to_integer: IrvConvertToIntegerFn§irv_convert_to_float: IrvConvertToFloatFn§irv_convert_to_integer_nlt_type3: IrvConvertToIntegerFn§irv_convert_to_float_nlt_type3: IrvConvertToFloatFn§rct_forward: RctFn§rct_backward: RctFn§ict_forward: IctFn§ict_backward: IctFnAuto Trait Implementations§
impl Freeze for ColourTransformFns
impl RefUnwindSafe for ColourTransformFns
impl Send for ColourTransformFns
impl Sync for ColourTransformFns
impl Unpin for ColourTransformFns
impl UnsafeUnpin for ColourTransformFns
impl UnwindSafe for ColourTransformFns
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