pub struct LutDataType {
pub num_input_channels: u8,
pub num_output_channels: u8,
pub num_clut_grid_points: u8,
pub matrix: Matrix3d,
pub num_input_table_entries: u16,
pub num_output_table_entries: u16,
pub input_table: LutStore,
pub clut_table: LutStore,
pub output_table: LutStore,
pub lut_type: LutType,
}
Fields§
§num_input_channels: u8
§num_output_channels: u8
§num_clut_grid_points: u8
§matrix: Matrix3d
§num_input_table_entries: u16
§num_output_table_entries: u16
§input_table: LutStore
§clut_table: LutStore
§output_table: LutStore
§lut_type: LutType
Trait Implementations§
Source§impl Clone for LutDataType
impl Clone for LutDataType
Source§fn clone(&self) -> LutDataType
fn clone(&self) -> LutDataType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for LutDataType
impl RefUnwindSafe for LutDataType
impl Send for LutDataType
impl Sync for LutDataType
impl Unpin for LutDataType
impl UnwindSafe for LutDataType
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