[][src]Struct qcms::transform::lutmABType

#[repr(C)]pub struct lutmABType {
    pub num_in_channels: u8,
    pub num_out_channels: u8,
    pub num_grid_points: [u8; 16],
    pub e00: s15Fixed16Number,
    pub e01: s15Fixed16Number,
    pub e02: s15Fixed16Number,
    pub e03: s15Fixed16Number,
    pub e10: s15Fixed16Number,
    pub e11: s15Fixed16Number,
    pub e12: s15Fixed16Number,
    pub e13: s15Fixed16Number,
    pub e20: s15Fixed16Number,
    pub e21: s15Fixed16Number,
    pub e22: s15Fixed16Number,
    pub e23: s15Fixed16Number,
    pub reversed: bool,
    pub clut_table: *mut f32,
    pub a_curves: [*mut curveType; 10],
    pub b_curves: [*mut curveType; 10],
    pub m_curves: [*mut curveType; 10],
    pub clut_table_data: [f32; 0],
}

Fields

num_in_channels: u8num_out_channels: u8num_grid_points: [u8; 16]e00: s15Fixed16Numbere01: s15Fixed16Numbere02: s15Fixed16Numbere03: s15Fixed16Numbere10: s15Fixed16Numbere11: s15Fixed16Numbere12: s15Fixed16Numbere13: s15Fixed16Numbere20: s15Fixed16Numbere21: s15Fixed16Numbere22: s15Fixed16Numbere23: s15Fixed16Numberreversed: boolclut_table: *mut f32a_curves: [*mut curveType; 10]b_curves: [*mut curveType; 10]m_curves: [*mut curveType; 10]clut_table_data: [f32; 0]

Trait Implementations

impl Clone for lutmABType[src]

impl Copy for lutmABType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.